Skip to content

Files

Latest commit

author
Shuo
Nov 27, 2021
cb30580 · Nov 27, 2021

History

History

maximum-number-of-accepted-invitations

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Nov 27, 2021

< Previous                  Next >

Related Topics

[Array] [Backtracking] [Matrix]

Hints

Hint 1 We can see that the problem can be represented as a directed graph with an edge from each boy to the girl he invited.
Hint 2 We need to choose a set of edges such that no to source points in the graph (i.e., boys) have an edge with the same endpoint (i.e., the same girl).
Hint 3 The problem is maximum bipartite matching in the graph.