-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathBipartiteMatching.cpp
185 lines (157 loc) · 3.52 KB
/
BipartiteMatching.cpp
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
//#define SUBMIT
#define C11
#ifdef SUBMIT
#define LOGLEVEL 0
#define NDEBUG
#else
#define LOGLEVEL 1
#endif
#include <cstdio>
#include <algorithm>
#include <cstring>
#include <cassert>
#include <iostream>
#include <vector>
#include <map>
#include <set>
#include <cmath>
#include <cstdlib>
#include <queue>
#include <stack>
#include <functional>
#include <sstream>
#include <deque>
#include <climits>
#include <cfloat>
#include <bitset>
#ifdef C11
#include <array>
#include <type_traits>
#include <random>
#include <unordered_set>
#include <unordered_map>
#endif
using namespace std;
#define LOG(l, x) \
if (l <= LOGLEVEL) \
cout << x << endl
#define int64 long long
#define repeat(x) for (auto repeat_var = 0; repeat_var < x; ++repeat_var)
#define for_inc(i, x) for (auto i = 0; i < x; ++i)
#define for_dec(i, x) for (auto i = x - 1; i >= 0; --i)
#define for_inc_range(i, x, y) for (auto i = x; i <= y; ++i)
#define for_dec_range(i, x, y) for (auto i = x; i >= y; --i)
#define fill0(x) memset(x, 0, sizeof(x))
#define INT_INF ((int)2E9L)
#define INT64_INF ((int64)1E18L)
#define MOD 1000000007
int MODP(int64 x) {
int r = x % MOD;
if (r < 0)
r += MOD;
return r;
}
void testGen() {
freopen("biginput1.txt", "w", stdout);
int n = 1000;
cout << n << endl;
repeat(n) {
repeat(1000) {
cout << (char)(rand() % 1 + 'a');
}
cout << endl;
}
fclose(stdout);
}
class BipartiteGraph {
friend class BipartiteMatching;
vector<vector<int>> adj;
int nLeft, nRight;
void reset(int nLeft, int nRight) {
this->nLeft = nLeft;
this->nRight = nRight;
adj.resize(nLeft + 1);
for_inc_range(u, 1, nLeft) adj[u].clear();
}
public:
BipartiteGraph(int nLeft, int nRight) {
reset(nLeft, nRight);
}
void addEdge(int x, int y) {
assert(1 <= x && x <= nLeft);
assert(1 <= y && y <= nRight);
adj[x].push_back(y);
}
};
// O(V(V+E))
struct BipartiteMatching {
vector<int> pre;
vector<int> mx, my;
int nMatch;
const BipartiteGraph &g;
bool match(int x) {
if (x == -1)
return true;
for (int y : g.adj[x]) {
if (pre[y] != -1)
continue;
pre[y] = x;
if (match(my[y])) {
my[y] = x;
mx[x] = y;
return true;
}
}
return false;
}
void greedyMatch() {
for_inc_range(x, 1, g.nLeft) {
if (mx[x] == -1) {
for (int y : g.adj[x]) {
if (my[y] == -1) {
mx[x] = y;
my[y] = x;
++nMatch;
break;
}
}
}
}
}
public:
BipartiteMatching(const BipartiteGraph &g) : g(g) {
nMatch = 0;
mx.resize(g.nLeft + 1);
for_inc_range(x, 1, g.nLeft) mx[x] = -1;
my.resize(g.nRight + 1);
for_inc_range(y, 1, g.nRight) my[y] = -1;
pre.resize(g.nRight + 1);
greedyMatch();
for_inc_range(x, 1, g.nLeft) if (mx[x] == -1) {
for_inc_range(y, 1, g.nRight) pre[y] = -1;
if (match(x)) {
++nMatch;
}
}
}
int getMaximumMatchingSize() const { return nMatch; }
};
// SPOJ - NKBM
int main() {
ios::sync_with_stdio(false);
#ifndef SUBMIT
//testGen();
freopen("input1.txt", "r", stdin);
#endif
int nLeft, nRight, m;
cin >> nLeft >> nRight >> m;
BipartiteGraph g(nLeft, nRight);
repeat(m) {
int x, y;
cin >> x >> y;
g.addEdge(x, y);
}
BipartiteMatching matching(g);
cout << matching.getMaximumMatchingSize() << endl;
return 0;
}