Maximum binary match PKU1469
One student can have multiple choices and ask if each student can just choose one course, but only one student can choose at most.
Typical binary matching, Max matching, direct set Template
COURSES
| Time Limit:1000 MS |
|
Memory Limit:10000 K |
| Total Submissions:17878 |
|
Accepted:7048 |
Description
Consider a group of N students and P courses. each student visits zero, one or more than one courses. your task is to determine whether it is possible to form a committee of exactly P students that satisfies simultaneously the conditions:
Every student in the committee represents a different course (a student can represent a course if he/she visits that course)
Each course has a representative in the committee
Input
Your program shocould read sets of data from the std input. The first line of the input contains the number of the data sets. Each data set is presented in the following format:
P N
Count1 Student1 1 Student1 2... Student1 Count1
Count2 Student2 1 Student2 2... Student2 Count2
...
CountP StudentP 1 StudentP 2... StudentP CountP
The first line in each data set contains two positive integers separated by one blank: P (1 <= P <= 100) -the number of courses and N (1 <= N <= 300)-the number of students. the next P lines describe in sequence of the courses? From course 1 to course P, each line describing a course. the description of course I is a line that starts with an integer Count I (0 <= Count I <= N) representing the number of students visiting course I. next, after a blank, you must l find the Count I students, visiting the course, each two consecutive separated by one blank. students are numbered with the positive integers from 1 to N.
There are no blank lines between consecutive sets of data. Input data are correct.
Output
The result of the program is on the standard output. for each input data set the program prints on a single line "YES" if it is possible to form a committee and "NO" otherwise. there shoshould not be any leading blanks at the start of the line.
Sample Input
23 33 1 2 32 1 21 13 32 1 32 1 31 1
Sample Output
YESNO
Source
Southeastern Europe 2000
# Include
# Include
# Include
# Include
# Include
# Include
# Include
# Include
# Include
# Include
# Include
# Include
# Include
# Include
# Include
Using namespace std; bool g [110] [310]; // adjacent matrix. true indicates edge-connected bool flag, vis [310]; // record whether a vertex in v2 has been searched for int match [310]; // record int p, n of the vertex that matches the vertex in v2; // left of the bipartite graph, number of vertices in the right set // The Hungarian algorithm bool DFS (int u) {int I; for (I = 1; I <= n; ++ I) {if (g [u] [I] &! Vis [I]) // If node I is connected to u and has not been searched {vis [I] = true; if (match [I] =-1 | DFS (match [I]) // if I is not in the previous M match, or if I is in M match, however, from the node adjacent to I, you can find the augmented path {match [I] = u; // record query success record, update matching M (that is, inverse) return true; // return search success }}return false;} int main () {int I, j, k, t, v, ans; scanf ("% d ", & t); while (t --) {scanf ("% d", & p, & n); for (I = 1; I <= p; I ++) {for (j = 1; j <= n; j ++) {g [I] [j] = false ;}} for (I = 1; I <= n; I ++) {match [I] =-1;} flag = true; for (I = 1; I <= p; I ++) {scanf ("% d", & k); if (k = 0) {flag = false;} while (k --) {scanf ("% d ", & v); g [I] [v] = true ;}} if (flag = true) {ans = 0; for (I = 1; I <= p; I ++) {memset (vis, false, sizeof (vis); // clear the tag if (DFS (I) = true) during the last search) {ans ++ ;}}if (ans = p) {printf ("YES \ n") ;}else {printf ("NO \ n ");}} else {printf ("NO \ n") ;}} return 0 ;}