結果
問題 | No.1002 Twotone |
ユーザー | keymoon |
提出日時 | 2024-02-23 03:45:13 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 1,248 ms / 5,000 ms |
コード長 | 2,691 bytes |
コンパイル時間 | 3,856 ms |
コンパイル使用メモリ | 274,112 KB |
実行使用メモリ | 71,964 KB |
最終ジャッジ日時 | 2024-09-29 04:46:04 |
合計ジャッジ時間 | 19,650 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 1 ms
6,820 KB |
testcase_02 | AC | 2 ms
6,820 KB |
testcase_03 | AC | 365 ms
37,000 KB |
testcase_04 | AC | 510 ms
47,356 KB |
testcase_05 | AC | 494 ms
47,484 KB |
testcase_06 | AC | 3 ms
6,816 KB |
testcase_07 | AC | 271 ms
30,116 KB |
testcase_08 | AC | 472 ms
47,492 KB |
testcase_09 | AC | 475 ms
47,324 KB |
testcase_10 | AC | 2 ms
6,820 KB |
testcase_11 | AC | 551 ms
37,680 KB |
testcase_12 | AC | 779 ms
48,020 KB |
testcase_13 | AC | 815 ms
48,016 KB |
testcase_14 | AC | 2 ms
6,820 KB |
testcase_15 | AC | 335 ms
28,992 KB |
testcase_16 | AC | 768 ms
47,764 KB |
testcase_17 | AC | 756 ms
47,756 KB |
testcase_18 | AC | 2 ms
6,820 KB |
testcase_19 | AC | 584 ms
44,408 KB |
testcase_20 | AC | 785 ms
54,088 KB |
testcase_21 | AC | 799 ms
53,884 KB |
testcase_22 | AC | 2 ms
6,816 KB |
testcase_23 | AC | 603 ms
40,888 KB |
testcase_24 | AC | 1,248 ms
64,360 KB |
testcase_25 | AC | 1,177 ms
64,416 KB |
testcase_26 | AC | 2 ms
6,816 KB |
testcase_27 | AC | 109 ms
32,956 KB |
testcase_28 | AC | 214 ms
47,604 KB |
testcase_29 | AC | 171 ms
47,596 KB |
testcase_30 | AC | 2 ms
6,816 KB |
testcase_31 | AC | 162 ms
47,476 KB |
testcase_32 | AC | 228 ms
47,564 KB |
testcase_33 | AC | 176 ms
47,408 KB |
testcase_34 | AC | 976 ms
71,964 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; struct CentroidDecomposition { int n, r; vector<vector<int>> g, cd; vector<int> ord, szs; CentroidDecomposition(vector<vector<int>> &gg): g(gg), n(gg.size()), cd(n), szs(n,-1) { dfs1(0,-1); dfs(0,-1,n,-1); } int dfs1(int v, int p) { if(!szs[v]) return 0; szs[v]=1; for(auto e:g[v])if(e!=p)szs[v]+=dfs1(e,v); return szs[v]; } void dfs(int v, int p, int sz, int root){ if (!szs[v]) return; begin: for(auto e:g[v]) { if (p==e or szs[e]<sz-sz/2) continue; p=v; v=e; goto begin; } if(root!=-1)cd[root].emplace_back(v); else r=v; ord.push_back(v); dfs1(v,-1); szs[v]=0; for(auto e:g[v])dfs(e,v,szs[e],v); return; } }; int main() { cin.tie(0)->sync_with_stdio(false); int n, k; cin >> n >> k; using pii = pair<int, int>; vector<vector<int>> g(n); vector<vector<pii>> edges(n); for (int i = 0; i < n - 1; i++) { int u, v, c; cin >> u >> v >> c; u--, v--, c--; g[u].push_back(v); g[v].push_back(u); edges[u].emplace_back(v, c); edges[v].emplace_back(u, c); } CentroidDecomposition cd(g); vector<int> visited(n); ll ans = 0; for (int ce : cd.ord) { int cnt0 = 0; // *, - int cnt1 = 0; // *, * map<pii, int> cnt2; // x, y map<int, int> cnt3; // x, * map<int, int> cnt4; // x, - auto f1 = [&](auto self, int node, int parent, int c1, int c2) -> void { if (c2 == -1) { cnt0++; cnt4[c1]++; } else { cnt1++; cnt2[make_pair(min(c1, c2), max(c1, c2))]++; cnt3[c1]++; cnt3[c2]++; } for (auto [child, c] : edges[node]) { if (child == parent || visited[child]) continue; if (c1 == c) { self(self, child, node, c1, c2); } else if (c2 == c || c2 == -1) { self(self, child, node, c1, c); } } }; auto f2 = [&](auto self, int node, int parent, int c1, int c2) -> void { if (c2 == -1) { ans += cnt0 - cnt4[c1] + cnt3[c1]; } else { ans += cnt2[make_pair(min(c1, c2), max(c1, c2))] + cnt4[c1] + cnt4[c2]; } for (auto [child, c] : edges[node]) { if (child == parent || visited[child]) continue; if (c1 == c) { self(self, child, node, c1, c2); } else if (c2 == c || c2 == -1) { self(self, child, node, c1, c); } } }; for (auto [child, c] : edges[ce]) { if (visited[child]) continue; f2(f2, child, ce, c, -1); f1(f1, child, ce, c, -1); } ans += cnt1; visited[ce] = true; } cout << ans << endl; }