#include <bits/stdc++.h>
#define f first
#define s second
#define m_p make_pair
#define vec vector
#define pb push_back
#define all(x) (x).begin(),(x).end()
#define rall(x) (x).rbegin(),(x).rend()
#define pw(x) (1LL<<(x))
#define sz(x) (int)(x).size()
using namespace std;
typedef long long ll;
typedef pair<int,int> pii;
template<class T> bool umin(T &a,const T &b){return (a>b?a=b,1:0);}
template<class T> bool umax(T &a,const T &b){return (a<b?a=b,1:0);}
const int N=1e5;
const int M=(N-1)*2;
vec<pii> g[N];
int ii[M],ij[M];
int siz[N],x[N],y[N],tt=2;
int get(int *p,int v){
return (p[v]<0?v:p[v]=get(p,p[v]));
}
bool mg(int *p,int v,int u){
v=get(p,v);u=get(p,u);
if(v==u) return 0;
if(p[v]<p[u]) swap(v,u);
p[u]=v;--p[v];
return 1;
}
void dfs(int v,int p){
x[v]=y[v]=tt++;
for(auto &z : g[v]){
if(z.s==p) continue;
if(x[z.f]) x[v]=(x[v]<y[z.f]?x[v]:y[z.f]);
else{
dfs(z.f,z.s);
x[v]=(x[v]<x[z.f]?x[v]:x[z.f]);
// cerr<<v<<' '<<z.f<<' '<<
if(x[z.f]>y[v]){
cout<<v+1<<' '<<z.f+1<<'\n';
}
}
}
}
signed main(){
ios_base::sync_with_stdio(false);cin.tie(0);cout.tie(0);
int n,m;
int v,u;
cin>>n>>m;
fill(x,x+N,-1);fill(y,y+N,-1);
for(int i=0;i<m;i++){
cin>>v>>u;--v;--u;
if(mg(x,v,u) || mg(y,v,u)){
g[v].emplace_back(u,i);g[u].emplace_back(v,i);
}
}
fill(x,x+N,0);fill(y,y+N,0);
for(int i=0;i<n;i++){
if(!x[i])
dfs(i,i);
}
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
2 ms |
3412 KB |
Output is correct |
2 |
Correct |
2 ms |
3412 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
6 ms |
4096 KB |
Output is correct |
2 |
Correct |
5 ms |
3796 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
94 ms |
4316 KB |
Output is correct |
2 |
Correct |
96 ms |
4032 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
146 ms |
5088 KB |
Output is correct |
2 |
Correct |
181 ms |
4432 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
279 ms |
6712 KB |
Output is correct |
2 |
Correct |
246 ms |
6080 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
346 ms |
12448 KB |
Output is correct |
2 |
Correct |
306 ms |
8248 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
613 ms |
13572 KB |
Output is correct |
2 |
Correct |
554 ms |
9408 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
687 ms |
15476 KB |
Output is correct |
2 |
Correct |
689 ms |
10336 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
918 ms |
15464 KB |
Output is correct |
2 |
Runtime error |
919 ms |
63164 KB |
Memory limit exceeded |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1046 ms |
14908 KB |
Output is correct |
2 |
Runtime error |
1014 ms |
24892 KB |
Memory limit exceeded |
3 |
Halted |
0 ms |
0 KB |
- |