-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path16947.cpp
84 lines (77 loc) · 1.56 KB
/
16947.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
//
// Created by kdongha on 2019/12/07.
//
#include <bits/stdc++.h>
std::list<int> list[3005];
int ans[3005];
int visited[3005];
int N, a, b;
void init() {
for (int i = 1; i <= N; i++) {
ans[i] = 10000;
visited[i] = 0;
}
}
int findCycle(int i, int p) {
if (visited[i]) {
return i;
}
visited[i] = 1;
for (auto next: list[i]) {
if (next != p) {
int ret = findCycle(next, i);
if (ret == -2) {
return -2;
}
if (ret >= 0) {
visited[i] = 2;
if (ret == i) {
return -2;
} else {
return ret;
}
}
}
}
return -1;
}
void setDist() {
std::queue<int> q;
for (int i = 1; i <= N; i++) {
if (visited[i] == 2) {
ans[i] = 0;
q.push(i);
}
}
while (!q.empty()) {
int from = q.front();
q.pop();
for (auto to:list[from]) {
if (ans[to] > ans[from] + 1) {
ans[to] = ans[from] + 1;
q.push(to);
}
}
}
}
void solve() {
std::cin >> N;
for (int i = 0; i < N; i++) {
std::cin >> a >> b;
list[a].push_back(b);
list[b].push_back(a);
}
init();
findCycle(1, 1);
setDist();
for (int i = 1; i <= N; i++) {
std::cout << ans[i] << " ";
}
}
int main() {
std::ios::sync_with_stdio(false);
std::cin.tie(NULL);
std::cout.tie(NULL);
solve();
return 0;
}