Girls and Boys
Time Limit: 20000/10000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)Total Submission(s): 6148 Accepted Submission(s): 2750
Problem Description
the second year of the university somebody started a study on the romantic relations between the students. The relation “romantically involved” is defined between one girl and one boy. For the study reasons it is necessary to find out the maximum set satisfying the condition: there are no two students in the set who have been “romantically involved”. The result of the program is the number of students in such a set. The input contains several data sets in text format. Each data set represents one set of subjects of the study, with the following description: the number of students the description of each student, in the following format student_identifier:(number_of_romantic_relations) student_identifier1 student_identifier2 student_identifier3 ... or student_identifier:(0) The student_identifier is an integer number between 0 and n-1, for n subjects. For each given data set, the program should write to standard output a line containing the result.
Sample Input
7 0: (3) 4 5 6 1: (2) 4 6 2: (0) 3: (0) 4: (2) 0 1 5: (1) 0 6: (2) 0 1 3 0: (2) 1 2 1: (1) 0 2: (1) 0
Sample Output
5 2
Source
Recommend
JGShining
1 //2500MS 4188K 944 B G++ 2 //求最大独立集,二分匹配模板题,首先要知道匈牙利算法,之后就好解了 3 //最大独立集: 总人数减去最大匹配书结果为最大独立数 4 #include5 #include 6 int g[1005][1005]; 7 int match[1005]; 8 int vis[1005]; 9 int n;10 bool dfs(int x)11 {12 for(int i=1;i<=n;i++){13 if(!vis[i] && g[x][i]){14 vis[i]=1;15 if(match[i]==0 || dfs(match[i])){ 16 match[i]=x;17 return true;18 }19 }20 }21 return false;22 }23 int hungary()24 {25 int ans=0;26 memset(match,0,sizeof(match));27 for(int i=1;i<=n;i++){28 memset(vis,0,sizeof(vis));29 vis[i]=1;30 if(dfs(i)) ans++;31 }32 return ans;33 }34 int main(void)35 {36 int a,m,b;37 while(scanf("%d",&n)!=EOF) 38 {39 memset(g,0,sizeof(g));40 for(int i=0;i