Created
May 7, 2014 16:31
-
-
Save KT-Yeh/64a9dca9ace0e5085ade to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <cstdio> | |
#include <vector> | |
#include <algorithm> | |
using namespace std; | |
vector<int> edge[105]; | |
int llink[105], rlink[105]; | |
bool used[105]; | |
bool dfs(int now) | |
{ | |
for (int i = 0; i < edge[now].size(); ++i) { | |
int nxt = edge[now][i]; | |
if (used[nxt]) continue; | |
used[nxt] = true; | |
if (rlink[nxt] == -1 || dfs(rlink[nxt]) == true) { | |
llink[now] = nxt; | |
rlink[nxt] = now; | |
return true; | |
} | |
} | |
return false; | |
} | |
int main() | |
{ | |
int n, m, k; | |
while (scanf("%d", &n) && n) { | |
for (int i = 0; i < n; ++i) edge[i].clear(); | |
// Input | |
scanf("%d %d", &m, &k); | |
int i, x, y; | |
for (int j = 0; j < k; ++j) { | |
scanf("%d %d %d", &i, &x, &y); | |
if (!x || !y) continue; // mode 0直接忽略! | |
edge[x].push_back(y); | |
} | |
// Bipartite | |
int result = 0; | |
fill(llink, llink+n, -1); | |
fill(rlink, rlink+m, -1); | |
for (int i = 0; i < n; ++i) { | |
fill(used, used+m, false); | |
if (dfs(i) == true) ++result; | |
} | |
// Output | |
printf("%d\n", result); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment