結果
問題 | No.1769 Don't Stop the Game |
ユーザー | polylogK |
提出日時 | 2021-11-03 13:38:45 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 292 ms / 3,000 ms |
コード長 | 1,544 bytes |
コンパイル時間 | 903 ms |
コンパイル使用メモリ | 83,740 KB |
実行使用メモリ | 57,528 KB |
最終ジャッジ日時 | 2024-06-29 18:01:52 |
合計ジャッジ時間 | 6,261 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | AC | 104 ms
16,248 KB |
testcase_09 | AC | 79 ms
13,668 KB |
testcase_10 | AC | 146 ms
24,284 KB |
testcase_11 | AC | 68 ms
12,800 KB |
testcase_12 | AC | 127 ms
19,268 KB |
testcase_13 | AC | 125 ms
19,568 KB |
testcase_14 | AC | 122 ms
19,448 KB |
testcase_15 | AC | 125 ms
19,560 KB |
testcase_16 | AC | 126 ms
19,576 KB |
testcase_17 | AC | 155 ms
22,012 KB |
testcase_18 | AC | 205 ms
30,892 KB |
testcase_19 | AC | 242 ms
37,108 KB |
testcase_20 | AC | 252 ms
37,492 KB |
testcase_21 | AC | 253 ms
37,492 KB |
testcase_22 | AC | 292 ms
37,364 KB |
testcase_23 | AC | 132 ms
19,584 KB |
testcase_24 | AC | 136 ms
19,584 KB |
testcase_25 | AC | 74 ms
20,044 KB |
testcase_26 | AC | 178 ms
38,056 KB |
testcase_27 | AC | 91 ms
39,572 KB |
testcase_28 | AC | 226 ms
57,528 KB |
testcase_29 | AC | 233 ms
47,208 KB |
testcase_30 | AC | 231 ms
47,432 KB |
ソースコード
/* # Algorithm 各頂点 v と、その親 p について次の値を求める。 c[v] := v の部分木にあってかつ xor[p; u] がはじめて 0 になるような u の個数 ## Time Comlexity O(N) */ #pragma GCC target("avx2") #pragma GCC optimize("O3") #pragma GCC optimize("unroll-loops") #include <stdio.h> #include <algorithm> #include <vector> #include <unordered_map> int main() { int n; scanf("%d", &n); std::vector<std::vector<int>> g(n); std::vector<int> a(n - 1), b(n - 1), c(n - 1); for(int i = 0; i < n - 1; i++) { scanf("%d%d%d", &a[i], &b[i], &c[i]); a[i]--; b[i]--; g[a[i]].push_back(i); g[b[i]].push_back(i); } using i64 = long long; i64 ans = (i64)n * (n - 1); std::vector<int> x(n), root(n), size(n), count(n); std::unordered_map<int, int> count_root; { std::unordered_map<int, int> map; auto dfs = [&](auto&& dfs, int v, int par, int xor_val) -> void { auto [it, _] = map.try_emplace(xor_val, -1); int tmp = it->second; if(tmp == -1) count_root[xor_val]++; else count[tmp]++; x[v] = xor_val; root[v] = tmp; size[v] = 1; for(int id: g[v]) { int to = a[id] ^ b[id] ^ v; if(to == par) continue; map[xor_val] = to; dfs(dfs, to, v, xor_val ^ c[id]); size[v] += size[to]; ans -= (i64)count[to] * (n - size[to]); } map[xor_val] = tmp; }; dfs(dfs, 0, -1, 0); } for(int v = 0; v < n; v++) { if(root[v] == -1) ans -= (i64)(count_root[x[v]] - 1) * size[v]; else ans -= (i64)count[root[v]] * size[v]; } printf("%lld\n", ans); }