#include <bits/stdc++.h>
using namespace std;
//#define FILE_IO
typedef pair<int, int> pii;
int N, M;
int K, vis[100005], lst[100005];
vector<int> nodes, edg[100005];
vector<pii> critical;
pii q[100005];
class UnionFind
{
public:
int N;
int f[100005];
void init(int _N)
{
N = _N;
for(int i = 1; i <= N; i++) f[i] = i;
}
int F(int x)
{
if(f[x] == x) return x;
return f[x] = F(f[x]);
}
void unite(int x, int y)
{
if(F(x) == F(y)) return;
f[F(y)] = F(x);
}
};
UnionFind f[2];
int main()
{
#ifdef FILE_IO
freopen("1.in", "r", stdin);
freopen("1.out", "w", stdout);
#endif
scanf("%d%d", &N, &M);
f[0].init(N), f[1].init(N);
for(int i = 1; i <= M; i++)
{
int x, y;
scanf("%d%d", &x, &y);
if(f[0].F(x) != f[0].F(y))
{
critical.push_back({x, y});
f[0].unite(x, y);
int fx = f[1].F(x);
int fy = f[1].F(y);
edg[fx].push_back(fy);
edg[fy].push_back(fx);
continue;
}
if(f[1].F(x) == f[1].F(y)) continue;
x = f[1].F(x);
y = f[1].F(y);
nodes.clear();
nodes.push_back(x);
nodes.push_back(y);
K += 2;
vis[x] = K; vis[y] = K + 1;
int st = 1, dr = 2;
q[1] = {x, K};
q[2] = {y, K + 1};
while(st <= dr)
{
int nod = q[st].first;
int id = q[st].second;
st++;
for(auto nxt: edg[nod])
{
nxt = f[1].F(nxt);
if(vis[nxt] == id) continue;
if(vis[nxt] == (id ^ 1))
{
int nd1 = nod;
int nd2 = nxt;
if(vis[nod] != K) swap(nd1, nd2);
while(nd1 != x)
{
nodes.push_back(nd1);
nd1 = lst[nd1];
}
while(nd2 != y)
{
nodes.push_back(nd2);
nd2 = lst[nd2];
}
st = dr + 1;
break;
}
vis[nxt] = vis[nod];
lst[nxt] = nod;
q[++dr] = {nxt, id};
}
}
for(int i = 1; i < nodes.size(); i++)
{
f[1].unite(nodes[0], nodes[i]);
for(auto x: edg[ nodes[i] ])
if(f[1].F(x) != f[1].F(nodes[0]))
edg[ nodes[0] ].push_back(x);
}
for(int i = 0; i < edg[ nodes[0] ].size(); i++)
{
if(f[1].F( nodes[0] ) == f[1].F( edg[ nodes[0] ][i]))
{
edg[ nodes[0] ].erase(edg[ nodes[0] ].begin() + i);
i--;
}
}
for(int i = 0; i < critical.size(); i++)
if( f[1].F(critical[i].first) == f[1].F(critical[i].second) )
{
critical.erase(critical.begin() + i);
i--;
}
}
for(auto e: critical)
if(f[1].F(e.first) != f[1].F(e.second))
printf("%d %d\n", e.first, e.second);
return 0;
}
Compilation message
pipes.cpp: In function 'int main()':
pipes.cpp:119:26: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for(int i = 1; i < nodes.size(); i++)
~~^~~~~~~~~~~~~~
pipes.cpp:126:26: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for(int i = 0; i < edg[ nodes[0] ].size(); i++)
~~^~~~~~~~~~~~~~~~~~~~~~~~
pipes.cpp:135:26: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for(int i = 0; i < critical.size(); i++)
~~^~~~~~~~~~~~~~~~~
pipes.cpp:49:10: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
scanf("%d%d", &N, &M);
~~~~~^~~~~~~~~~~~~~~~
pipes.cpp:55:14: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
scanf("%d%d", &x, &y);
~~~~~^~~~~~~~~~~~~~~~
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
3 ms |
2688 KB |
Output is correct |
2 |
Correct |
3 ms |
2688 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
37 ms |
7160 KB |
Output is correct |
2 |
Correct |
25 ms |
3448 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
129 ms |
5900 KB |
Output is correct |
2 |
Correct |
120 ms |
3200 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
354 ms |
21828 KB |
Memory limit exceeded (if you are sure your verdict is not MLE, please contact us) |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
863 ms |
65536 KB |
Execution killed with signal 9 (could be triggered by violating memory limits) |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
1809 ms |
65536 KB |
Execution killed with signal 9 (could be triggered by violating memory limits) |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
2037 ms |
65536 KB |
Execution killed with signal 9 (could be triggered by violating memory limits) |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
2600 ms |
65536 KB |
Execution killed with signal 9 (could be triggered by violating memory limits) |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
2102 ms |
65536 KB |
Execution killed with signal 9 (could be triggered by violating memory limits) |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
2043 ms |
65536 KB |
Execution killed with signal 9 (could be triggered by violating memory limits) |
2 |
Halted |
0 ms |
0 KB |
- |