码迷,mamicode.com
首页 > 编程语言 > 详细

匈牙利算法

时间:2017-10-20 21:48:21      阅读:327      评论:0      收藏:0      [点我收藏+]

标签:pen   isp   names   find   ==   first   match   view   closed   

技术分享
#include<iostream>
#include<cstdio>
#include<cstdlib>
#include<cstring>
#include<cmath>
#include<algorithm>
using namespace std;int match[maxn],link[maxn][maxn],used[maxn],ans;
bool find(int u)
{
    /*for(int i=first[u];i;i=next[i])
    {
        if(!used[to[i]])
        {
            used[to[i]]=1;
            if(!match[to[i]] || find(to[i]))
            {
                match[to[i]]=u;
                return true;
            }
        }
    }
    return false;*/
    for(int i=1;i<=n;i++)
    {
        if(!used[i] && link[u][i])
        {
            used[i]=1;
            if(match[i]==0 || find(i))
            {
                match[i]=u;
                return true;
            }
        }
    }
    return false;
}
int maxmatch()
{
    for(int i=1;i<=n;i++)if(dfs(i))ans++;
}
View Code

 

匈牙利算法

标签:pen   isp   names   find   ==   first   match   view   closed   

原文地址:http://www.cnblogs.com/Kong-Ruo/p/7701372.html

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