#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define ii pair<ll,ll>
#define endl '\n'
const ll inf=1e15;
const ll mod=1e9+7;
const ll maxn=1e5+5;
vector<ll> adj[maxn];
ll vis[maxn][2];
ll dfsRoot,cnt;
void dfs(ll a, ll p){
vis[a][0]=vis[a][1]=cnt++;
for (auto &u:adj[a]){
if (vis[u][1]!=-1){
if (u!=p){
vis[a][0]=min(vis[u][0],vis[a][0]);
}
continue;
}
if (u==dfsRoot && p!=dfsRoot){
cout<<a<<' '<<u<<endl;
}
dfs(u,a);
if (vis[u][0]>vis[a][1]){
cout<<a<<' '<<u<<endl;
}
vis[a][0]=min(vis[u][0],vis[a][0]);
}
}
int main(){
ios_base::sync_with_stdio(0);
cin.tie(0);
ll n,e,a,b;
cin>>n>>e;
for (int i=0;i<e;i++){
cin>>a>>b;
adj[a].emplace_back(b);
adj[b].emplace_back(a);
}
memset(vis,-1,sizeof(vis));
for (int i=1;i<=n;i++){
if (vis[i][1]!=-1) continue;
dfsRoot=i;
cnt=0;
dfs(i,-1);
}
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
3 ms |
4172 KB |
Output is correct |
2 |
Incorrect |
2 ms |
4172 KB |
Wrong number of edges |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
5 ms |
4812 KB |
Output is correct |
2 |
Incorrect |
5 ms |
4616 KB |
Wrong number of edges |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
106 ms |
20036 KB |
Memory limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
218 ms |
26196 KB |
Memory limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
446 ms |
46404 KB |
Memory limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
578 ms |
52544 KB |
Memory limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
790 ms |
65540 KB |
Execution killed with signal 9 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
1071 ms |
65540 KB |
Execution killed with signal 9 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
1006 ms |
65540 KB |
Execution killed with signal 9 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
966 ms |
65540 KB |
Execution killed with signal 9 |
2 |
Halted |
0 ms |
0 KB |
- |