#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef pair<int, int> pii;
const int MX=100010, inf=2e9;
int n, m;
int U[2][MX];
vector<int> G[MX];
int find(int t, int x){
return x==U[t][x] ? x : U[t][x]=find(t,U[t][x]);
}
void unite(int t, int x, int y){
if(find(t,x)==find(t,y)) return;
U[t][U[t][y]]=U[t][x];
}
int up[MX], dep[MX], now;
void dfs(int v, int p){
dep[v]=++now; up[v]=dep[v];
bool multi=false;
for(int x:G[v]){
if(x==p){
if(multi) up[v]=min(up[v], dep[p]);
multi=true;
continue;
}
if(dep[x]>0) up[v]=min(up[v], dep[x]);
else{
dfs(x,v);
up[v]=min(up[v], up[x]);
if(up[x]>dep[v]) cout<<v<<' '<<x<<'\n';
}
}
now--;
}
int main(){
cin>>n>>m;
for(int i=1; i<=n; i++) U[0][i]=U[1][i]=i;
for(int i=1; i<=m; i++){
int u, v; cin>>u>>v;
if(find(0,u)==find(0,v)){
if(find(1,u)==find(1,v)) continue;
unite(1,u,v);
}
else unite(0,u,v);
G[u].push_back(v);
G[v].push_back(u);
}
for(int i=1; i<=n; i++)
if(dep[i]==0) dfs(i,-1);
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
4 ms |
2688 KB |
Output is correct |
2 |
Correct |
4 ms |
2688 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
12 ms |
3264 KB |
Output is correct |
2 |
Correct |
12 ms |
2944 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
317 ms |
3028 KB |
Output is correct |
2 |
Correct |
316 ms |
2936 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
532 ms |
3704 KB |
Output is correct |
2 |
Correct |
624 ms |
3300 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
844 ms |
5400 KB |
Output is correct |
2 |
Correct |
724 ms |
4984 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1186 ms |
10572 KB |
Output is correct |
2 |
Correct |
1000 ms |
7108 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1813 ms |
11832 KB |
Output is correct |
2 |
Correct |
1808 ms |
9132 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
2530 ms |
14028 KB |
Output is correct |
2 |
Correct |
2454 ms |
9040 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
3073 ms |
14024 KB |
Output is correct |
2 |
Correct |
2922 ms |
9044 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
3693 ms |
13388 KB |
Output is correct |
2 |
Correct |
3670 ms |
10580 KB |
Output is correct |