首页 > 其他 > 详细

Hdu_2063 过山车 -最大匹配(邻接表版)

时间:2016-08-01 14:01:28      阅读:279      评论:0      收藏:0      [点我收藏+]

题目:就是最大匹配了

/************************************************
Author        :DarkTong
Created Time  :2016/8/1 12:53:27
File Name     :Hdu2063.cpp
*************************************************/

#include <cstdio>
#include <cstring>
#include <vector>
using namespace std;
const int maxn = 500 + 10;
vector<int> w[maxn];
int n, m;
int Left[maxn];
bool used[maxn];
bool match(int i)
{
    for(int j=0;j<w[i].size();++j) if(!used[w[i][j]])
    {
        int v = w[i][j];
        used[v] = true;
        if(!Left[v]||match(Left[v]))
        {
            Left[v] = i;
            return true;
        }
    }
    return false;
}
//返回最大匹配数
int hungary()
{
    int res=0;
    memset(Left, 0, sizeof(Left));
    for(int i=1;i<=m;++i)
    {
        memset(used, 0, sizeof(used));
        if(match(i)) res++;
    }
    return res;
}

int main()
{
    //freopen("in.txt","r",stdin);
    //freopen("out.txt","w",stdout);
    int k;
    while(scanf("%d", &k)==1&&k)
    {
        for(int i=0;i<maxn;++i) w[i].clear();

        int u, v;
        scanf("%d%d", &m, &n);
        for(int i=1;i<=k;++i)
        {
            scanf("%d%d", &u, &v);
            w[u].push_back(v);
        }
        printf("%d\n", hungary());
    }
    return 0;
}

Hdu_2063 过山车 -最大匹配(邻接表版)

原文:http://www.cnblogs.com/DarkTong/p/5725428.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!