結果
問題 | No.922 東北きりきざむたん |
ユーザー | QCFium |
提出日時 | 2019-11-08 22:26:30 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 2,507 bytes |
コンパイル時間 | 2,265 ms |
コンパイル使用メモリ | 183,000 KB |
実行使用メモリ | 24,576 KB |
最終ジャッジ日時 | 2024-09-15 01:38:43 |
合計ジャッジ時間 | 7,373 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | RE | - |
testcase_09 | WA | - |
testcase_10 | RE | - |
testcase_11 | WA | - |
testcase_12 | AC | 18 ms
10,624 KB |
testcase_13 | RE | - |
testcase_14 | WA | - |
testcase_15 | AC | 14 ms
11,264 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | AC | 38 ms
12,672 KB |
testcase_29 | RE | - |
ソースコード
#include <bits/stdc++.h> int ri() { int n; scanf("%d", &n); return n; } struct UnionFind { std::vector<int> data; UnionFind(int n) : data(n, -1) {} int root(int i) { return data[i] < 0 ? i : (data[i] = root(data[i])); } void unite(int i, int j) { i = root(i); j = root(j); if (i == j) return; if (data[i] > data[j]) std::swap(i, j); data[i] += data[j]; data[j] = i; } bool same(int i, int j) { return root(i) == root(j); } }; int n, m; std::vector<std::vector<int> > hen, parent; std::vector<bool> used; std::vector<int> cnt, sum, depth; void dfs1(int i, int prev, int d) { parent[i].push_back(prev); { int cur = parent[i][0]; for (int i = 1; i < (int) parent[cur].size(); i++) { parent[i].push_back(parent[cur][i - 1]); } } depth[i] = d; used[i] = true; int cur = 0; for (auto j : hen[i]) { if (j == prev) continue; dfs1(j, i, d + 1); cur += sum[j]; } sum[i] = cur + cnt[i]; } int dfs2(int i, int prev, int over) { for (auto j : hen[i]) { if (j == prev) continue; if (sum[j] >= over) return dfs2(j, i, over); } return i; } int64_t dfs3(int i, int prev, int dist) { int64_t res = 0; for (auto j : hen[i]) if (j != prev) res += dfs3(j, i, dist + 1); return res + (int64_t) dist * cnt[i]; } int lca(int i, int j) { if (i == j) return i; if (depth[i] > depth[j]) std::swap(i, j); int dif = depth[j] - depth[i]; for (int i = 0; i < 20; i++) if (dif >> i & 1) j = parent[j][i]; if (i == j) return i; for (int k = 20; k >= 0; k--) { if (k < (int) parent[i].size() and parent[i][k] != parent[j][k]) { i = parent[i][k]; j = parent[j][k]; } } return parent[i][0]; } int main() { n = ri(), m = ri(); int q = ri(); hen.resize(n); used.resize(n); cnt.resize(n); sum.resize(n); depth.resize(n); parent.resize(n); UnionFind uni(n); for (int i = 0; i < m; i++) { int a = ri() - 1; int b = ri() - 1; hen[a].push_back(b); hen[b].push_back(a); uni.unite(a, b); } std::vector<std::pair<int, int> > sames; for (int i = 0; i < q; i++) { int a = ri() - 1, b = ri() - 1; if (uni.same(a, b)) { sames.push_back({a, b}); } else { cnt[a]++; cnt[b]++; } } int64_t res = 0; for (int i = 0; i < n; i++) { if (!used[i]) { used[i] = true; dfs1(i, -1, 0); int root = dfs2(i, -1, (sum[i] + 1) / 2); res += dfs3(root, -1, 0); } } for (auto &i : sames) { int lc = lca(i.first, i.second); res += depth[i.first] + depth[i.second] - 2 * depth[lc]; } std::cout << res << std::endl; return 0; }