-
Notifications
You must be signed in to change notification settings - Fork 59
/
Copy pathcuplaj maxim bipartit.cpp
51 lines (47 loc) · 970 Bytes
/
cuplaj maxim bipartit.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
# include <bits/stdc++.h>
# define NR 10005
using namespace std;
ifstream f("cuplaj.in");
ofstream g("cuplaj.out");
vector <int> v[NR];
int i,j,n,m,x,y,VV,sol,cuplate,E;
int M1[NR], M2[NR], ap[NR];
int cupleaza (int k) {
if (ap[k]==VV) return 0;
ap[k]=VV;
for (auto &x: v[k]) {
if (! M2[x]) {
M1[k]=x;
M2[x]=k;
return 1;
}
}
for (auto &x: v[k]) {
if (cupleaza(M2[x])) {
M1[k]=x;
M2[x]=k;
return 1;
}
}
return 0;
}
int main ()
{
f>>n>>m>>E;
for (int i=1; i<=E; ++i) {
f>>x>>y;
v[x].push_back(y);
}
cuplate=1;
while (cuplate) {
cuplate=0; ++VV;
for (int i=1; i<=n; ++i)
if (! M1[i]) cuplate+=cupleaza(i);
}
for (int i=1; i<=n; ++i)
if (M1[i]) ++sol;
g<<sol<<"\n";
for (int i=1; i<=n; ++i)
if (M1[i]) g<<i<<" "<<M1[i]<<"\n";
return 0;
}