#include<bits/stdc++.h>
using namespace std;
const int N = 1e5 + 1;
int n, m;
int p[2][N];
int tin[N], fup[N], timer;
int E, Y[4 * N], lst[N], prv[4 * N];
void add_edge(int x, int y){
Y[++E] = y;
if(lst[x] == 0){
lst[x] = E;
}
else{
prv[E] = lst[x];
lst[x] = E;
}
Y[++E] = x;
if(lst[y] == 0){
lst[y] = E;
}
else{
prv[E] = lst[y];
lst[y] = E;
}
}
int dsu_get(int x, int v){
return p[x][v] == v ? v : p[x][v] = dsu_get(x, p[x][v]);
}
void dfs(int v, int pr = 0){
tin[v] = fup[v] = ++timer;
bool was = false;
for(int i = lst[v]; i != 0; i = prv[i]){
int to = Y[i];
if(to == pr){
if(was){
fup[v] = min(fup[v], tin[to]);
}
was = true;
continue;
}
if(!tin[to]){
dfs(to, v);
if(fup[to] > tin[v]){
cout << v << " " << to << "\n";
}
fup[v] = min(fup[v], fup[to]);
}
else{
fup[v] = min(fup[v], tin[to]);
}
}
}
int main(){
ios_base::sync_with_stdio(0);cin.tie(0);cout.tie(0);
cin >> n >> m;
for(int i = 1; i <= n; i++){
p[0][i] = p[1][i] = i;
}
for(int i = 1; i <= m; i++){
int x, y;
cin >> x >> y;
if(dsu_get(0, x) == dsu_get(0, y)){
if(dsu_get(1, x) == dsu_get(1, y)){
continue;
}
p[1][dsu_get(1, x)] = dsu_get(1, y);
}
else{
p[0][dsu_get(0, x)] = dsu_get(0, y);
}
add_edge(x, y);
}
for(int i = 1; i <= n; i++){
if(!tin[i]){
//cout << "KEK " << i << " " << tin[i] << "\n";
dfs(i);
}
}
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
2 ms |
384 KB |
Output is correct |
2 |
Correct |
2 ms |
416 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
7 ms |
896 KB |
Output is correct |
2 |
Correct |
4 ms |
640 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
97 ms |
692 KB |
Output is correct |
2 |
Correct |
98 ms |
512 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
163 ms |
1400 KB |
Output is correct |
2 |
Correct |
192 ms |
1016 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
294 ms |
2836 KB |
Output is correct |
2 |
Correct |
240 ms |
2460 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
391 ms |
7712 KB |
Output is correct |
2 |
Correct |
342 ms |
4444 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
608 ms |
8720 KB |
Output is correct |
2 |
Correct |
587 ms |
6004 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
851 ms |
10664 KB |
Output is correct |
2 |
Correct |
783 ms |
6196 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1079 ms |
10656 KB |
Output is correct |
2 |
Correct |
1002 ms |
6208 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1219 ms |
10192 KB |
Output is correct |
2 |
Correct |
1125 ms |
7356 KB |
Output is correct |