-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path11400.cpp
59 lines (54 loc) · 1.21 KB
/
11400.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
//
// Created by kdongha on 2020/02/11.
//
#include <bits/stdc++.h>
using namespace std;
int V, E, number;
vector<int> adj[100001];
int discovered[100001];
vector<pair<int, int>> ans;
int dfs(int prev, int current) {
discovered[current] = ++number;
int m = discovered[current];
for (int next:adj[current]) {
if (next == prev) {
continue;
}
if (discovered[next] > 0) {
m = min(m, discovered[next]);
continue;
}
int n = dfs(current, next);
if (n > discovered[current]) {
ans.push_back({min(current, next), max(current, next)});
}
m = min(m, n);
}
return m;
}
void solve() {
cin >> V >> E;
for (int i = 0; i < E; i++) {
int a, b;
cin >> a >> b;
adj[a].push_back(b);
adj[b].push_back(a);
}
for (int i = 1; i <= V; i++) {
if (discovered[i] == 0) {
dfs(0, i);
}
}
sort(ans.begin(), ans.end());
cout << ans.size() << "\n";
for (auto a:ans) {
std::cout << a.first << " " << a.second << "\n";
}
}
int main() {
ios::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
solve();
return 0;
}