# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
711674 |
2023-03-17T11:02:50 Z |
Pety |
Pipes (CEOI15_pipes) |
C++14 |
|
1975 ms |
11400 KB |
#include <vector>
#include <iostream>
#include <cassert>
using namespace std;
int n, m, x, y, sz[100002], p[100002], dp[20][100002], depth[100002];
vector<int>G[100002];
int find (int x) {
if (p[x] == x)
return x;
return p[x] = find(p[x]);
}
void dfs2 (int x, int par) {
dp[0][x] = par;
depth[x] = depth[par] + 1;
for (int i = 1; i <= 8; i++)
dp[i][x] = dp[i - 1][dp[i - 1][x]];
for (auto it : G[x]) {
if (it == par)
continue;
dfs2(it, x);
}
}
int cnt;
void merge (int x, int y) {
int px = find(x);
int py = find(y);
if (px == py)
return;
if (sz[px] > sz[py]) {
swap(x, y);
swap(px, py);
}
G[x].push_back(y);
G[y].push_back(x);
p[px] = py;
sz[py] += sz[px];
dfs2(x, y);
}
int lca (int x, int y) {
if (depth[x] > depth[y])
swap(x, y);
int d = depth[y] - depth[x];
for (int i = 0; (1 << i) <= d; i++)
if (d & (1 << i))
y = dp[i][y];
if (x == y)
return x;
for (int i = 8; i >= 0; i--)
if (dp[i][x] != dp[i][y]) {
x = dp[i][x];
y = dp[i][y];
}
return dp[0][x];
}
int add[100002], viz[100002];
void dfs (int x, int par) {
viz[x] = 1;
for (auto it : G[x]) {
if (it == par)
continue;
dfs(it, x);
add[x] += add[it];
}
if (add[x] == 0 && par != 0)
cout << x << " " << par << "\n";
}
int main ()
{
ios_base::sync_with_stdio(false);
cin.tie(0); cout.tie(0);
cin >> n >> m;
for (int i = 1; i <= n; i++) {
p[i] = i;
sz[i] = 1;
}
for (int i = 1; i <= m; i++) {
cin >> x >> y;
if (find(x) == find(y)) {
int L = lca(x, y);
assert(L > 0);
add[L] -= 2;
add[x]++;
add[y]++;
}
else {
merge(x, y);
//assert(abs(depth[x] - depth[y]) == 1);
}
}
for (int i = 1; i <= n; i++)
if (!viz[find(i)])
dfs(find(i), 0);
return 0;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
2 ms |
2644 KB |
Output is correct |
2 |
Incorrect |
2 ms |
2644 KB |
Wrong number of edges |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
4 ms |
3028 KB |
Output is correct |
2 |
Correct |
4 ms |
3028 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
127 ms |
3028 KB |
Output is correct |
2 |
Correct |
132 ms |
3012 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
255 ms |
3512 KB |
Output is correct |
2 |
Correct |
297 ms |
3500 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
461 ms |
4684 KB |
Output is correct |
2 |
Correct |
352 ms |
5272 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
632 ms |
8724 KB |
Output is correct |
2 |
Correct |
535 ms |
8848 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1098 ms |
9592 KB |
Output is correct |
2 |
Correct |
946 ms |
9872 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1445 ms |
11240 KB |
Output is correct |
2 |
Correct |
1326 ms |
11296 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1744 ms |
11236 KB |
Output is correct |
2 |
Correct |
1667 ms |
11312 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1975 ms |
10816 KB |
Output is correct |
2 |
Correct |
1933 ms |
11400 KB |
Output is correct |