Courses
Time Limit: 20000/10000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)Total Submission(s): 3767 Accepted Submission(s): 1800
Problem 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 Your program should read sets of data from a text file. The first line of the input file 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'll 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. 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 should not be any leading blanks at the start of the line. An example of program input and output:
Sample Input
2 3 3 3 1 2 3 2 1 2 1 1 3 3 2 1 3 2 1 3 1 1
Sample Output
YES NO
Source
给定一个课程数目和每一个门课程听课的人的编号,问能否每一门课都有人听课...!
代码:
1 #include2 #include 3 #include 4 using namespace std; 5 const int maxn=301; 6 vector mat[maxn]; 7 int judge[maxn]; 8 bool vis[maxn]; 9 bool skm(int x){10 vector ::iterator it;11 for(it=mat[x].begin();it n) printf("YES\n");48 else printf("NO\n");49 }50 return 0;51 }
采用邻接矩阵做:
1 #include2 #include 3 #include 4 #include 5 #include 6 using namespace std; 7 const int maxn=505; 8 bool mat[maxn][maxn]; 9 int judge[maxn];10 bool vis[maxn];11 int n,m;12 bool skm(int x){13 for(int i=1;i<=m;i++)14 {15 if(!vis[i]&&mat[x][i])16 {17 vis[i]=1;18 if(judge[i]==0||skm(judge[i]))19 {20 judge[i]=x;21 return 1;22 }23 }24 }25 return 0;26 }27 int main()28 {29 int cas,t,a,i;30 //freopen("test.in","r",stdin);31 scanf("%d",&cas);32 while(cas--)33 {34 scanf("%d%d",&n,&m);35 memset(judge,0,sizeof(judge));36 memset(mat,0,sizeof(mat));37 for( i=1;i<=n;i++)38 {39 scanf("%d",&t);40 while(t--)41 {42 scanf("%d",&a);43 mat[i][a]=1;44 }45 }46 for(i=1;i<=n;i++){47 memset(vis,0,sizeof(vis));48 if(!skm(i))break;49 }50 if(i>n)51 printf("YES\n");52 else53 printf("NO\n");54 }55 return 0;56 }