C++
$\color{#cc33ff}{— > 算法基础课题解}$
$图解:$
#include <iostream>
#include <cstring>
#include <algorithm>
using namespace std;
const int N = 510, M = 1e5 + 10;
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] == 0 || find(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 (find(i)) res ++;
}
cout << res;
return 0;
}
tql