码迷,mamicode.com
首页 > 其他好文 > 详细

二分图匹配

时间:2018-05-10 23:24:36      阅读:171      评论:0      收藏:0      [点我收藏+]

标签:hdu   tar   for   ||   open   using   detail   mem   target   

匈牙利算法    https://blog.csdn.net/c20180630/article/details/70175814

模板题hdu2063

技术分享图片
#include<bits/stdc++.h>
using namespace std;
const int N=550;
int k,m,n,cnt;
bool vis[N];
int ma[N],last[N];
struct orz{
    int v,nex;}e[N*4];
void add(int x,int y)
{
    cnt++;
    e[cnt].v=y;
    e[cnt].nex=last[x];
    last[x]=cnt;
}
bool found(int x)
{
    for (int i=last[x];i;i=e[i].nex)
    {
        if (!vis[e[i].v])
        {
            int v=e[i].v;
            vis[v]=1;
            if (!ma[v]||found(ma[v]))
            {
                ma[v]=x;
                return 1;
            }
        }
    }
    return 0;
}
int main()
{
    while (scanf("%d",&k)&&k)
    {
        scanf("%d%d",&m,&n);
        memset(ma,0,sizeof(ma));
        memset(e,0,sizeof(e));
        memset(last,0,sizeof(last));
        cnt=0;
        int x,y;
        for (int i=1;i<=k;i++)
        {
            scanf("%d%d",&x,&y);
            add(x,y);
        }
        int ans=0;
        for (int i=1;i<=m;i++)
        {
            memset(vis,0,sizeof(vis));
            if (found(i)) ans++;
        }
        printf("%d\n",ans);
    }
}
hdu2063

 

二分图匹配

标签:hdu   tar   for   ||   open   using   detail   mem   target   

原文地址:https://www.cnblogs.com/tetew/p/9021942.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!