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 } 
  • 相关阅读:
    找到数组中消失的所有数字-算法刷题总结
    爬楼梯-算法练习笔记
    最长公共前缀-刷题总结
    每日温度-算法详细分析
    买卖股票的最佳时机-算法详细分析
    回文数-算法详细分析
    合并两个有序链表-算法详细法分析
    最短无序连续子数组 | 算法详细分析
    整数反转-算法详细分析
    python设计模式之责任链模式
  • 原文地址:https://www.cnblogs.com/soTired/p/4743500.html
Copyright © 2011-2022 走看看