POJ 1274The Perfect Stall(二分图最大匹配)

题目地址:http://poj.org/problem?id=1274

还是一道模板题。。。话不多说,上代码:

#include <iostream>
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <math.h>
#include <ctype.h>
#include <queue>
#include <map>
#include <algorithm>

using namespace std;
int n, mp[300][300], vis[300], link[300];
int dfs(int a)
{
    int i, j;
    for(i=1;i<=n;i++)
    {
        if(!vis[i]&&mp[a][i])
        {
            vis[i]=1;
            if(link[i]==-1||dfs(link[i]))
            {
                link[i]=a;
                return 1;
            }
        }
    }
    return 0;
}
int hungary()
{
    int i, ans=0;
    memset(link,-1,sizeof(link));
    for(i=1;i<=n;i++)
    {
        memset(vis,0,sizeof(vis));
        if(dfs(i))
            ans++;
    }
    return ans;
}
int main()
{
    int m, a, b, i, p;
    while(scanf("%d%d",&n,&p)!=EOF)
    {
        memset(mp,0,sizeof(mp));
        for(i=1;i<=n;i++)
        {
            scanf("%d",&m);
            while(m--)
            {
                scanf("%d",&b);
                mp[i][b]=1;
            }
        }
        printf("%d\n",hungary());
    }
    return 0;
}


你可能感兴趣的:(编程,算法,C语言,poj,二分图匹配)