关于st数组作用的一点思考
不写st数组的后果
模板代码
#include<iostream>
#include<cstring>
using namespace std;
const int N=510,M=1e5+10;
int h[N],e[M],ne[M],idx;
bool st[N];
int match[N];
int n,m;
void init()
{
memset(h,-1,sizeof(h));
idx=0;
}
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]==0||find(match[j])){
match[j]=x;
return true;
}
}
}
return false;
}
int main()
{
int n1,n2;
scanf("%d%d%d",&n1,&n2,&m);
init();
while(m--){
int a,b;
scanf("%d%d",&a,&b);
add(a,b);
}
int res=0;
for(int i=1;i<=n1;i++){
memset(st,0,sizeof(st));//st数组只作用于当前匹配的过程中
if(find(i)) res++;
}
printf("%d\n",res);
return 0;
}