跳到主要内容

匈牙利算法

AcWing 861. 二分图的最大匹配

题目

https://www.acwing.com/problem/content/863/ 给定一个二分图,其中左半部包含 n1 个点(编号 1∼n1),右半部包含 n2 个点(编号 1∼n2),二分图共包含 m 条边。 数据保证任意一条边的两个端点都不可能在同一部分中。 请你求出二分图的最大匹配数。

二分图的匹配:给定一个二分图 G,在 G 的一个子图 M 中,M 的边集 {E} 中的任意两条边都不依附于同一个顶点,则称 M 是一个匹配。 二分图的最大匹配:所有匹配中包含边数最多的一组匹配被称为二分图的最大匹配,其边数即为最大匹配数。

思路

如果你想找的妹子已经有了男朋友, 你就去问问她男朋友, 你有没有备胎, 把这个让给我好吧

代码

#include<bits/stdc++.h>
#define x first
#define y second

using namespace std;

typedef long long LL;
typedef pair<int,int> PII;

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++;
}

int dfs(int x)
{
for(int i=h[x];~i;i=ne[i])
{
int j=e[i];
if(!st[j])
{
st[j]=true;
if(match[j]==0||dfs(match[j]))
{
match[j]=x;
return true;
}
}
}
return false;
}

int main()
{
cin>>n1>>n2>>m;
memset(h,-1,sizeof h);

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(dfs(i)) res++;
}
cout<<res;
return 0;
}