-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path1298.cpp
60 lines (55 loc) · 1.12 KB
/
1298.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
//
// Created by kdongha on 2019/12/20.
//
#include <bits/stdc++.h>
int N, M;
int aMatch[105];
int bMatch[105];
bool visited[105];
bool map[105][105];
bool dfs(int a) {
if (visited[a]) {
return false;
} else {
visited[a] = true;
for (int b = 1; b <= N; b++) {
if (map[a][b]) {
if (bMatch[b] == -1 || dfs(bMatch[b])) {
aMatch[a] = b;
bMatch[b] = a;
return true;
}
}
}
return false;
}
}
void solve() {
std::cin >> N >> M;
for (int i = 0; i < M; i++) {
int a, b;
std::cin >> a >> b;
map[a][b] = true;
}
for (int i = 1; i <= N; i++) {
aMatch[i] = -1;
bMatch[i] = -1;
}
int size = 0;
for (int i = 1; i <= N; i++) {
for (int j = 1; j <= N; j++) {
visited[j] = false;
}
if (dfs(i)) {
size++;
}
}
std::cout << size;
}
int main() {
std::ios::sync_with_stdio(false);
std::cin.tie(NULL);
std::cout.tie(NULL);
solve();
return 0;
}