#include <bits/stdc++.h>
using namespace std;
#define fastio ios_base::sync_with_stdio(0);cin.tie(0);cout.tie(0);
const int N = 1e5+5;
vector<int> adj[N];
int tin[N], par[N][2], low[N];
int n, m, tmp;
int get1(int src)
{
if(src == par[src][0]) return src;
return par[src][0] = get1(par[src][0]);
}
bool join1(int u, int v)
{
u = get1(u), v = get1(v);
if(u == v) return false;
par[u][0] = v;
return true;
}
int get2(int src)
{
if(src == par[src][1]) return src;
return par[src][1] = get2(par[src][1]);
}
bool join2(int u, int v)
{
u = get2(u), v = get2(v);
if(u == v) return false;
par[u][1] = v;
return true;
}
void dfs(int src, int pa = -1)
{
bool v = 0;
tin[src] = low[src] = ++tmp;
for(auto it : adj[src])
{
if(it == pa && !v)
{
v = 1;
continue;
}
if(tin[it])
{
low[src] = min(low[src], tin[it]);
continue;
}
dfs(it, src);
low[src] = min(low[src], low[it]);
if(low[it] > tin[src])
{
cout << src << ' ' << it << '\n';
}
}
return ;
}
int main()
{
fastio;
int u, v;
cin >> n >> m;
for(int i = 1; i <= n; i++) par[i][0] = par[i][1] = i;
for(int i = 0; i < m; i++)
{
cin >> u >> v;
if(join1(u, v) || join2(u, v))
{
adj[u].push_back(v), adj[v].push_back(u);
}
}
for(int i = 1; i <= n; i++)
{
if(!tin[i]) dfs(i);
}
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
4188 KB |
Output is correct |
2 |
Correct |
2 ms |
4188 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
6 ms |
4700 KB |
Output is correct |
2 |
Correct |
5 ms |
4444 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
66 ms |
9936 KB |
Output is correct |
2 |
Correct |
68 ms |
9676 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
114 ms |
14660 KB |
Output is correct |
2 |
Correct |
135 ms |
15952 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
197 ms |
22908 KB |
Memory limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
255 ms |
32568 KB |
Memory limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
411 ms |
45940 KB |
Memory limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
534 ms |
58724 KB |
Memory limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
653 ms |
65536 KB |
Memory limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
834 ms |
65536 KB |
Memory limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |