POJ 1469 COURSES (maximum matching Hungary algorithm in Bipartite Graph), poj1469

Source: Internet
Author: User

POJ 1469 COURSES (maximum matching Hungary algorithm in Bipartite Graph), poj1469


COURSES
Time Limit:1000 MS   Memory Limit:10000 K
Total Submissions:18892   Accepted:7455

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

Input

Your program shocould read sets of data from the std input. The first line of the input 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 must l 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.

Output

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 shoshould not be any leading blanks at the start of the line.

Sample Input

23 33 1 2 32 1 21 13 32 1 32 1 31 1

Sample Output

YESNO

Source

Southeastern Europe 2000

Question link: http://poj.org/problem? Id = 1469

Some students form a group. Each of them represents a different class. Each class has a member in the group and asks if they can form such a group.

Subject Analysis: A person can learn multiple courses and represent one of them. However, only one person can be chosen as the representative for a course. We will establish a Bipartite Graph Based on the relationship between the course and the person, when the maximum number of matched courses in the bipartite graph is equal to the number of courses, it is obviously acceptable. Otherwise, it cannot be assumed that a course is not represented.

#include <cstdio>#include <cstring>bool g[105][305];int cx[105], cy[305];bool vis[305];int n, p;int DFS(int x){    for(int y = 1; y <= n; y++)    {        if(!vis[y] && g[x][y])        {            vis[y] = true;            if(cy[y] == -1 || DFS(cy[y]))            {                cx[x] = y;                cy[y] = x;                return 1;            }        }    }    return 0;}int MaxMatch(){    int res = 0;    memset(cx, -1, sizeof(cx));    memset(cy, -1, sizeof(cy));    for(int i = 1; i <= p; i++)    {        if(cx[i] == -1)        {            memset(vis, false, sizeof(vis));            res += DFS(i);        }    }    return res;}int main(){    int T;    scanf("%d", &T);    while(T--)    {        memset(g, false, sizeof(g));        scanf("%d %d", &p, &n);        for(int i = 1; i <= p; i++)        {            int cnt;            scanf("%d", &cnt);            while(cnt --)            {                int j;                scanf("%d", &j);                g[i][j] = true;            }        }        int ans = MaxMatch();        if(ans == p)            printf("YES\n");        else            printf("NO\n");    }}


Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.