• poj 1274 The Perfect Stall(二分图匹配)


    Description

    Farmer John completed his new barn just last week, complete with all the latest milking technology. Unfortunately, due to engineering problems, all the stalls in the new barn are different. For the first week, Farmer John randomly assigned cows to stalls, but it quickly became clear that any given cow was only willing to produce milk in certain stalls. For the last week, Farmer John has been collecting data on which cows are willing to produce milk in which stalls. A stall may be only assigned to one cow, and, of course, a cow may be only assigned to one stall. 
    Given the preferences of the cows, compute the maximum number of milk-producing assignments of cows to stalls that is possible. 

    Input

    The input includes several cases. For each case, the first line contains two integers, N (0 <= N <= 200) and M (0 <= M <= 200). N is the number of cows that Farmer John has and M is the number of stalls in the new barn. Each of the following N lines corresponds to a single cow. The first integer (Si) on the line is the number of stalls that the cow is willing to produce milk in (0 <= Si <= M). The subsequent Si integers on that line are the stalls in which that cow is willing to produce milk. The stall numbers will be integers in the range (1..M), and no stall will be listed twice for a given cow.

    Output

    For each case, output a single line with a single integer, the maximum number of milk-producing stall assignments that can be made.

    Sample Input

    5 5
    2 2 5
    3 2 3 4
    2 1 5
    3 1 2 5
    1 2 

    Sample Output

    4

    Source

     
     1 #include<iostream>
     2 #include<cstdio>
     3 #include<cstring>
     4 #include<algorithm>
     5 #include<queue>
     6 #include<vector>
     7 using namespace std;
     8 #define N 206
     9 int n,m;
    10 vector<int> v[N];
    11 int vis[N];
    12 int match[N];
    13 
    14 bool dfs(int u){
    15     for(int i=0;i<v[u].size();i++){
    16         int x=v[u][i];
    17         if(!vis[x]){
    18             vis[x]=1;
    19             if(match[x]==-1 || dfs(match[x])){
    20                 match[x]=u;
    21                 return true;
    22             }
    23         }
    24     }
    25     return false;
    26 }
    27 
    28 void solve(){
    29     int ans=0;
    30     memset(match,-1,sizeof(match));
    31     for(int i=1;i<=n;i++){
    32         memset(vis,0,sizeof(vis));
    33         if(dfs(i)){
    34             ans++;
    35         }
    36     }
    37     printf("%d
    ",ans);
    38 }
    39 int main()
    40 {
    41     
    42     while(scanf("%d%d",&n,&m)==2){
    43         
    44         for(int i=0;i<=n;i++){
    45             v[i].clear();
    46         }
    47         
    48         for(int i=1;i<=n;i++){
    49             int num;
    50             scanf("%d",&num);
    51             int y;
    52             for(int j=1;j<=num;j++){
    53                 scanf("%d",&y);
    54                 v[i].push_back(y);
    55             }
    56         }
    57         
    58         solve();
    59         
    60     }
    61     return 0;
    62 }
    View Code
  • 相关阅读:
    AspNetPager多参数传值
    PHP5.3不支持zend debugger, 安装Xdebug调试工具
    WebClient模拟Post发送接收数据
    Newtonsoft.Json序列化和反序列
    VS.PHP 调试错误:Apache Http server已停止工作
    Ubuntu 10.04 下 xampp 安装教程
    java之递归学习
    产品经理值得交的10个朋友
    不用windows安装盘安装64位win7或windows server 2008的方法(32位winpe下安装64位的办法)
    全生命周期研发流程
  • 原文地址:https://www.cnblogs.com/UniqueColor/p/4771632.html
Copyright © 2020-2023  润新知