#include <bits/stdc++.h>
using namespace std;
const int MAXN = 100005;
int v, e, ID = 0;
int num[MAXN], low[MAXN];
int p[2][MAXN], r[2][MAXN];
vector<int> adj[MAXN];
int root(int id, int x){
if(p[id][x] == x) return x;
return p[id][x] = root(id, p[id][x]);
}
void connect(int id, int x, int y){
x = root(id, x), y = root(id, y);
if(r[id][x] > r[id][y]) swap(x, y);
p[id][x] = y; r[id][y] ++;
}
bool connected(int id, int x, int y){
x = root(id, x), y = root(id, y);
return x == y;
}
void dfs(int u, int par){
num[u] = low[u] = ID ++;
for(int v : adj[u]){
if(num[v] == -1){
dfs(v, u);
if(num[u] < low[v])
cout << u+1 << ' ' << v+1 << '\n';
low[u] = min(low[u], low[v]);
} else if(v != par){
low[u] = min(low[u], num[v]);
} else par = -1;
}
}
int main(){
ios::sync_with_stdio(0);
cin.tie(0);
cin >> v >> e;
for(int i = 0; i < v; i ++)
p[0][i] = p[1][i] = i,
r[0][i] = r[1][i] = 0,
num[i] = low[i] = -1;
for(int i = 0; i < e; i ++){
int a, b; cin >> a >> b;
if(!connected(0, a-1, b-1)){
adj[a-1].push_back(b-1);
adj[b-1].push_back(a-1);
connect(0, a-1, b-1);
} else if(!connected(1, a-1, b-1)){
adj[a-1].push_back(b-1);
adj[b-1].push_back(a-1);
connect(1, a-1, b-1);
}
}
for(int i = 0; i < v; i ++)
if(num[i] == -1)
dfs(i, -1);
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
5 ms |
2636 KB |
Output is correct |
2 |
Correct |
2 ms |
2636 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
5 ms |
3276 KB |
Output is correct |
2 |
Correct |
6 ms |
3020 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
99 ms |
5836 KB |
Output is correct |
2 |
Correct |
117 ms |
4300 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
142 ms |
6668 KB |
Output is correct |
2 |
Correct |
219 ms |
14664 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
307 ms |
10076 KB |
Output is correct |
2 |
Runtime error |
236 ms |
19212 KB |
Memory limit exceeded |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
305 ms |
12168 KB |
Output is correct |
2 |
Runtime error |
367 ms |
25964 KB |
Memory limit exceeded |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
496 ms |
13812 KB |
Output is correct |
2 |
Runtime error |
595 ms |
43204 KB |
Memory limit exceeded |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
693 ms |
16604 KB |
Memory limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
887 ms |
22572 KB |
Memory limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
1041 ms |
41576 KB |
Memory limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |