标签:str 匈牙利 div namespace color clu include set 没有
二分图的最大匹配:
#include <iostream> #include <algorithm> #include <cstring> using namespace std; const int N = 510, M = 100010; int n1, n2, m; int h[N], e[M], ne[M], idx; int match[N]; bool st[N]; void add(int a, int b) { e[idx] = b, ne[idx] = h[a], h[a] = idx ++; } bool find (int x) { for(int i = h[x];i!=-1;i=ne[i]) { int j = e[i]; if(!st[j]) { st[j] = true; if(!match[j] || find(match[j])) { match[j] = x; return true; } } } return false; } int main() { memset(h, -1, sizeof h); cin>>n1>>n2>>m; while(m--) { int a, b; cin>>a>>b; add(a, b); } int res = 0; for(int i = 1;i<=n1;i++) { memset(st, false, sizeof st); if(find(i)) res++; } cout<<res<<endl; }
也称之为匈牙利算法,把左半部分的点和出发的边用邻接表存起来,它这个是不管三七二十一,左边所有的点全都要扫描一下该点连接着的右边的点,然后看有没有访问过,有没有匹配掉,或者是能不能找到其他配对的点。如果没有匹配 || 即使匹配掉了看它能不能找到其他连着的没有被匹配的点 那么就匹配了。
标签:str 匈牙利 div namespace color clu include set 没有
原文地址:https://www.cnblogs.com/longxue1991/p/12715587.html