#include <bits/stdc++.h>
using namespace std;
mt19937 rng(time(0));
const int mxN=1e5+2;
vector<int>adj[mxN];
int ln[mxN],dp[mxN];
bool vv[mxN];
int finde(int x){
return x==ln[x]?x:ln[x]=finde(ln[x]);
}
void merge(int u,int v){
ln[finde(u)]=finde(v);
}
void dfs(int u,int p){
vv[u]=1;
for(int&v:adj[u]){
if(!(v^p))
continue;
dfs(v,u);
dp[u]^=dp[v];
}
}
void res(int u,int p){
vv[u]=1;
for(int&v:adj[u]){
if(!(v^p))
continue;
res(v,u);
if(!dp[v])
cout<<u<<' '<<v<<'\n';
}
}
signed main(){
ios::sync_with_stdio(0);
cin.tie(0);
int n,m;
cin>>n>>m;
iota(ln,ln+n+1,0);
for(int i=0,u,v;i<m;++i){
cin>>u>>v;
if(finde(u)==finde(v)){
int xx=rng();
dp[u]^=xx;
dp[v]^=xx;
}else{
merge(u,v);
adj[u].push_back(v);
adj[v].push_back(u);
}
}
fill(vv,vv+n+1,0);
for(int fi=1;fi<=n;++fi){
if(vv[fi])
continue;
dfs(fi,0);
}
fill(vv,vv+n+1,0);
for(int fi=1;fi<=n;++fi){
if(vv[fi])
continue;
res(fi,0);
}
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
2 ms |
2820 KB |
Output is correct |
2 |
Correct |
1 ms |
2652 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
4 ms |
2908 KB |
Output is correct |
2 |
Correct |
4 ms |
2992 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
107 ms |
7412 KB |
Output is correct |
2 |
Correct |
74 ms |
7248 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
116 ms |
10800 KB |
Output is correct |
2 |
Correct |
140 ms |
12012 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
232 ms |
16300 KB |
Output is correct |
2 |
Correct |
158 ms |
14764 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
268 ms |
21340 KB |
Memory limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
374 ms |
31056 KB |
Memory limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
553 ms |
29236 KB |
Memory limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
655 ms |
35256 KB |
Memory limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
883 ms |
42192 KB |
Memory limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |