-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathBipartiteGraph.h
54 lines (51 loc) · 1.6 KB
/
BipartiteGraph.h
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
class BipartiteGraph
{
public:
BipartiteGraph(unsigned l, unsigned r) : n(l + r), l(l), adj(n)
{}
void connect(int u, int v)
{ adj[u].push_back(v); adj[v].push_back(u); }
int maximumMatching() // hungarian algorithm: bfs version
{
vector<int> match(n, -1);
vector<int> check(n, -1);
vector<int> prev(n);
int ans = 0;
for (int i = 0; i < l; ++i) {
if (match[i] == -1) {
queue<int> q;
q.push(i);
prev[i] = -1;
while (q.size()) {
int u = q.front();
for (int v : adj[u]) {
if (check[v] != i) {
check[v] = i;
q.push(match[v]);
if (match[v] >= 0) {
prev[match[v]] = u;
} else {
int x = u, y = v;
while (x != -1) {
int t = match[x];
match[x] = y;
match[y] = x;
x = prev[x];
y = t;
}
goto next;
}
}
}
q.pop();
}
next:
if (match[i] != -1) ++ans;
}
}
return ans;
}
protected:
int n, l;
vector<vector<int>> adj;
};