POJ1466 Girls and Boys

来源:互联网 发布:vr的前景 知乎 编辑:程序博客网 时间:2024/05/22 01:41

Description

In 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.

Input

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 (n <=500 ), for n subjects.

Output

For each given data set, the program should write to standard output a line containing the result.

Sample Input

70: (3) 4 5 61: (2) 4 62: (0)3: (0)4: (2) 0 15: (1) 06: (2) 0 130: (2) 1 21: (1) 02: (1) 0

Sample Output

52


求最大点独立集,其实就是求 点的总数 - 最小点覆盖数(最大点独立集与最小点覆盖集互为补集), 而 最小点覆盖数 == 最大匹配,基本属于模板题,代码很好写,但因为一点小细节WA了两次,坑!

#include <cstdio>#include <cstring>int n, link[505];bool graph[505][505], state[505];  bool find(int p){    for(int i = 0; i < n; i++){     if(graph[p][i] && !state[i]){            state[i] = 1;            int j = link[i];            if( j == -1 || find(j) ){                link[i] = p; link[p] = i; //开始只写了link[i] = p, WA了两次                return true;              }        }    }    return false;}int main(){    int  x, y, t, cot,ans; char c;    while(~scanf("%d", &n)){        cot = 0;        memset(graph, 0, sizeof(graph));         for(int i = 0; i < n; i++){            scanf("%d%c%c%c%d%c", &x, &c, &c, &c, &t, &c);            if(!t) cot++;            while(t--){                scanf("%d", &y);                graph[x][y] = 1;            }           }        ans = n;        memset(link, -1, sizeof(link));        for(int i = 0; i < n; i++){            if(link[i] == -1){        memset(state, 0, sizeof(state));                if(find(i)) ans--;       }        }printf("%d\n", ans);        }        return 0;} 








































0 0
原创粉丝点击