最多配对数
#include<iostream>
#include<algorithm>
#include<cstring>
using namespace std;
const int N=510,M=100010;
int n1,n2,m;
int h[N],e[N],ne[N],idx;
int match[N];//存储妹子匹配的男生
int 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=ne[i];
{
if(!st[j])//还没问过对方
{
st[j]=true;
if(match[j]==0||find(match[i]))//如果妹子没有对象,或者对象喜欢上了别人
{
match[j]=x;//该妹子选择了我
return true;
}
}
}
}
}
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(find(i))res++;//找到了一对
}
cout<<res;
return 0;
}