博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
HDU-----(1083)Courses(最大匹配)
阅读量:5336 次
发布时间:2019-06-15

本文共 3707 字,大约阅读时间需要 12 分钟。

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 #include
2 #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 }
View Code

采用邻接矩阵做:

1 #include
2 #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 }
View Code

 

转载于:https://www.cnblogs.com/gongxijun/p/3964299.html

你可能感兴趣的文章
js dom操作基本单词和格式
查看>>
GridView.ScrollIntoView() doesn't work
查看>>
通过案例快速学会Picasso图片缓存库
查看>>
Linux平台下快速搭建FTP服务器
查看>>
文件处理-二进制模式
查看>>
软件质量模型
查看>>
小程序商城实现原理
查看>>
Java查看动态代理生成的代码
查看>>
1-Two Sum
查看>>
How to make a simplest WCF service work on Win7 with VS2010
查看>>
js实现复选框全选和不选
查看>>
[ Java4Android ] Java的变量
查看>>
css:width height
查看>>
bzoj 4503: 两个串
查看>>
SQL中的共享锁分析及如何解锁
查看>>
Eclipse插件:mybatis generator的使用步骤
查看>>
/etc/profile不生效问题
查看>>
Scrapy教程,亲测能用
查看>>
HDU 5969 最大的位或【贪心/按位或/思维】
查看>>
用CDNs和Expires改善网站性能(译文)
查看>>