zoukankan      html  css  js  c++  java
  • 杭电1083--Courses(二分图匹配)

    Courses

    Time Limit: 20000/10000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)
    Total Submission(s): 5040    Accepted Submission(s): 2430


    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
     

     

    Recommend
    We have carefully selected several similar problems for you:  1068 2444 1150 1281 1054 
    求最小、点覆盖数(最大匹配值)是否等于集合元素值;
     1 #include <cstdio>
     2 #include <cstring>
     3 #include <iostream>
     4 using namespace std;
     5 int map[350][350], dis[350], vis[350];
     6 int n, u;
     7 bool Search(int a){
     8     for(int i = 1; i <= u; i++){
     9         if(map[a][i] && !vis[i]){
    10             vis[i] = 1;
    11             if(!dis[i] || Search(dis[i])){
    12                 dis[i] = a;
    13                 return true; 
    14             } 
    15         }
    16     }
    17     return false; 
    18 }
    19 int main(){
    20     int t;
    21     scanf("%d", &t);
    22     while(t--){
    23         scanf("%d %d", &n, &u);
    24         memset(map, 0, sizeof(map));
    25         memset(dis, 0, sizeof(dis));
    26         for(int i = 1; i <= n; i++){
    27             int a, b;
    28             scanf("%d", &a); 
    29             for(int j = 1; j <= a; j++){
    30                 scanf("%d", &b);
    31                 map[i][b] = 1;
    32             }
    33         }
    34         int cnt = 0;
    35         for(int i = 1; i <= n; i++){
    36             memset(vis, 0, sizeof(vis));
    37             if(Search(i))
    38                 cnt++;
    39         }
    40         printf(cnt==n?"YES
    ":"NO
    ");
    41     }
    42     return 0;     
    43 } 
  • 相关阅读:
    [团队项目]典型用户
    0415 操作系统_实验二、作业调度模拟程序
    0415 结对2.0评价
    复利计算- 结对2.0--复利计算WEB升级版
    0408汉堡
    复利计算- 结对1.0
    0405《构建之法》第四章读后感
    复利计算器4.0 【java版】
    复利计算器的单元测试结果
    操作系统 实验一、命令解释程序的编写实验
  • 原文地址:https://www.cnblogs.com/soTired/p/4743500.html
Copyright © 2011-2022 走看看