#include <stdio.h>
#include <algorithm>
#include <vector>
#include <numeric>
#include <assert.h>
using namespace std;
const int NMAX = 100010;
struct UF {
int g[NMAX];
int tata[NMAX];
UF() {
iota(tata, tata + NMAX, 0);
fill(g, g + NMAX, 1);
}
int find(int x) {
if (tata[tata[x]] != tata[x])
tata[x] = find(tata[x]);
return tata[x];
}
bool unite(int a, int b) {
a = find(a);
b = find(b);
if (a == b)
return 0;
if (g[a] < g[b])
swap(a, b);
g[a] += g[b];
tata[b] = a;
return 1;
}
} simple, strong;
namespace Tree {
int h[NMAX];
int father[NMAX];
int up[NMAX]; /// ultimul cu care stiu sigur ca m-am unit
vector <int> adia[NMAX]; /// suma ar trebui sa fie max NMAX :)
vector <pair <int, int>> single;
int n;
int find(int nod) {
if (up[up[nod]] != up[nod])
up[nod] = find(up[nod]);
return up[nod];
}
void make_strong(int a, int b) {
while (1) {
a = find(a);
b = find(b);
if (a == b)
return;
if (h[a] < h[b])
swap(a, b);
/// acum il unesc pe a cu tatal sau
assert(strong.find(a) != strong.find(father[a]));
assert(father[a] != 0);
strong.unite(a, father[a]);
up[a] = father[a];
}
}
void dfs(int nod, int tata) {
father[nod] = tata;
h[nod] = 1 + h[tata];
up[nod] = (strong.find(nod) == strong.find(tata) ? find(tata) : nod);
for (auto i : adia[nod])
if (i != tata)
dfs(i, nod);
}
void add_edge(int a, int b) {
if (simple.unite(a, b)) {
if (simple.g[a] < simple.g[b])
swap(a, b);
adia[a].push_back(b);
adia[b].push_back(a);
dfs(b, a);
}
else
make_strong(a, b);
}
void dfs_ans(int nod, int tata) {
for (auto i : adia[nod]) {
if (i == tata)
continue;
if (strong.find(i) != strong.find(nod))
single.push_back({ nod, i });
dfs_ans(i, nod);
}
}
void get_ans() {
for (int i = 1; i <= n; i++)
if (father[i] == 0)
dfs_ans(i, 0);
}
}
int main()
{
int n, m, a, b;
scanf("%d%d", &n, &m);
Tree::n = n;
iota(Tree::up, Tree::up + NMAX, 0);
while (m--) {
scanf("%d%d", &a, &b);
Tree::add_edge(a, b);
}
Tree::get_ans();
for (auto i : Tree::single)
printf("%d %d\n", i.first, i.second);
return 0;
}
Compilation message
pipes.cpp: In function 'int main()':
pipes.cpp:112: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:117:14: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
scanf("%d%d", &a, &b);
~~~~~^~~~~~~~~~~~~~~~
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
5 ms |
4608 KB |
Output is correct |
2 |
Correct |
5 ms |
4608 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
75 ms |
4836 KB |
Output is correct |
2 |
Correct |
32 ms |
4856 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
171 ms |
4736 KB |
Output is correct |
2 |
Correct |
231 ms |
4736 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
627 ms |
5248 KB |
Output is correct |
2 |
Correct |
298 ms |
4984 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
3424 ms |
5776 KB |
Output is correct |
2 |
Correct |
2168 ms |
5876 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
5044 ms |
7104 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
5033 ms |
7420 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
5093 ms |
7868 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
5094 ms |
7932 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
5016 ms |
7812 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |