aaa~
find()里面的st[j] 写成了st[i] 一直Wa wa wa, 改了一中午了 草(一种植物)
C++ 代码
#include <iostream>
#include <algorithm>
#include <cstring>
#include <cstdio>
using namespace std;
const int N = 510, M = 1e5 + 10;
int n1, n2, m;
int h[N], ne[M], e[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];
//如果这个男生X没考虑过这个女生J就进行考虑
if(!st[j])
{
st[j] = true;
//如果这个女生没有被男生匹配 或这 这个女生的对象可以换一个老婆就让这个女生让给这个男生
if(match[j] == 0 || find(match[j]))
{
match[j] = x;
return true;
}
}
}
return false;
}
int main()
{
memset(h, -1, sizeof h);
cin.tie(0);
cin >> n1>> n2 >> m;
while(m--)
{
int a, b;
cin >> a >> b;
add(a, b);
}
int ans = 0;
for(int i = 1; i <= n1; i++)
{
//每个男生都要考虑与其有边的女生,有的女生可能被其他的男生考虑过,所以全部都要初始。
memset(st, false, sizeof st);
if(find(i)) ans++;
}
cout << ans;
return 0;
}
代码不理解,就手动模拟一下样例就会懂了