/**
* author: wxhtzdy
* created: 15.01.2023 19:07:48
**/
#include <bits/stdc++.h>
using namespace std;
int main() {
ios::sync_with_stdio(false);
cin.tie(0);
int n, m;
cin >> n >> m;
vector<int> par(n);
vector<int> sz(n, 1);
vector<vector<int>> g(n);
vector<int> f(n);
iota(par.begin(), par.end(), 0);
function<int(int)> get = [&](int x) {
return par[x] == x ? x : par[x] = get(par[x]);
};
const int L = 20;
vector<int> dep(n);
vector<vector<int>> jump(n, vector<int>(L));
for (int i = 0; i < n; i++) {
jump[i] = vector<int>(L, i);
}
function<void(int, int)> Dfs = [&](int v, int pr) {
dep[v] = dep[pr] + 1;
jump[v][0] = pr;
for (int j = 1; j < L; j++) {
jump[v][j] = jump[jump[v][j - 1]][j - 1];
}
for (int u : g[v]) {
if (u != pr) {
Dfs(u, v);
}
}
};
auto LCA = [&](int u, int v) {
if (dep[u] > dep[v]) {
swap(u, v);
}
for (int i = L - 1; i >= 0; i--) {
if (dep[jump[v][i]] >= dep[u]) {
v = jump[v][i];
}
}
if (u == v) {
return u;
}
for (int i = L - 1; i >= 0; i--) {
if (jump[u][i] != jump[v][i]) {
u = jump[u][i];
v = jump[v][i];
}
}
return jump[u][0];
};
for (int i = 0; i < m; i++) {
int u, v;
cin >> u >> v;
--u; --v;
assert(u != v);
if (get(u) != get(v)) {
int pu = get(u);
int pv = get(v);
if (sz[pu] < sz[pv]) {
swap(pu, pv);
swap(u, v);
}
Dfs(v, u);
g[u].push_back(v);
g[v].push_back(u);
par[pv] = pu;
sz[pu] += sz[pv];
} else {
int w = LCA(u, v);
f[u] += 1;
f[v] += 1;
f[w] -= 2;
}
}
vector<pair<int, int>> ans;
vector<bool> was(n);
function<void(int, int)> Solve = [&](int v, int pr) {
was[v] = true;
for (int u : g[v]) {
if (u != pr) {
Solve(u, v);
f[v] += f[u];
}
}
if (f[v] == 0 && pr != -1) {
ans.emplace_back(v, pr);
}
};
for (int i = 0; i < n; i++) {
if (!was[i]) {
Solve(i, -1);
}
}
for (auto& p : ans) {
cout << p.first + 1 << " " << p.second + 1 << '\n';
}
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
340 KB |
Output is correct |
2 |
Incorrect |
1 ms |
316 KB |
Wrong number of edges |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
7 ms |
1240 KB |
Output is correct |
2 |
Correct |
7 ms |
1236 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
237 ms |
1216 KB |
Output is correct |
2 |
Correct |
240 ms |
1176 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
444 ms |
2368 KB |
Output is correct |
2 |
Correct |
516 ms |
2332 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
774 ms |
5120 KB |
Output is correct |
2 |
Correct |
647 ms |
7224 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1316 ms |
13560 KB |
Output is correct |
2 |
Correct |
1318 ms |
13416 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
2229 ms |
15524 KB |
Output is correct |
2 |
Correct |
1744 ms |
15368 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
3224 ms |
18972 KB |
Memory limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
4002 ms |
19556 KB |
Memory limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
4842 ms |
20392 KB |
Memory limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |