forked from shayanh/algorithms
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmatching.cpp
More file actions
69 lines (58 loc) · 1.33 KB
/
matching.cpp
File metadata and controls
69 lines (58 loc) · 1.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
#include <bits/stdc++.h>
using namespace std;
#define pb push_back
#define mp make_pair
#define SQR(a) ((a) * (a))
#define SZ(x) ((int) (x).size())
#define ALL(x) (x).begin(), (x).end()
#define CLR(x, a) memset(x, a, sizeof x)
#define VAL(x) #x << " = " << (x) << " "
#define FOREACH(i, x) for(__typeof((x).begin()) i = (x).begin(); i != (x).end(); i ++)
#define FOR(i, n) for (int i = 0; i < (n); i ++)
#define X first
#define Y second
typedef long long ll;
typedef pair<ll, ll> pll;
typedef pair<int, int> pii;
const int MAXN = 50 * 1000 + 10;
int match[3][MAXN];
bool mark[MAXN];
vector<int> adj[MAXN];
int n, m, p;
bool dfs(int x) {
if (mark[x]) return false;
mark[x] = true;
for (int i = 0; i < SZ(adj[x]); i ++) {
int v = adj[x][i];
if (match[1][v] == -1 || dfs(match[1][v])) {
match[0][x] = v;
match[1][v] = x;
return true;
}
}
return false;
}
void bi_match() {
CLR(match, -1);
for (int i = 0; i < n; i ++) {
CLR(mark, 0);
bool check = false;
for (int j = 0; j < n; j ++)
if (!mark[j] && match[0][j] == -1)
check |= dfs(j);
if (!check) break;
}
}
int main () {
ios::sync_with_stdio(false);
cin >> n >> m >> p;
for (int i = 0; i < p; i ++) {
int x, y; cin >> x >> y; x --, y --;
adj[x].pb(y);
}
bi_match();
int ans = 0;
FOR(i, n) ans += (match[0][i] != -1);
cout << ans << endl;
return 0;
}