結果
問題 | No.1769 Don't Stop the Game |
ユーザー | first_vil |
提出日時 | 2021-10-22 16:23:09 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 608 ms / 3,000 ms |
コード長 | 1,955 bytes |
コンパイル時間 | 2,289 ms |
コンパイル使用メモリ | 222,736 KB |
実行使用メモリ | 78,988 KB |
最終ジャッジ日時 | 2024-06-29 17:47:06 |
合計ジャッジ時間 | 11,942 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | AC | 1 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,944 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,944 KB |
testcase_07 | AC | 3 ms
6,944 KB |
testcase_08 | AC | 282 ms
15,380 KB |
testcase_09 | AC | 250 ms
14,976 KB |
testcase_10 | AC | 381 ms
22,016 KB |
testcase_11 | AC | 204 ms
12,276 KB |
testcase_12 | AC | 224 ms
17,424 KB |
testcase_13 | AC | 232 ms
17,740 KB |
testcase_14 | AC | 239 ms
17,676 KB |
testcase_15 | AC | 275 ms
17,852 KB |
testcase_16 | AC | 374 ms
18,496 KB |
testcase_17 | AC | 489 ms
22,320 KB |
testcase_18 | AC | 551 ms
31,200 KB |
testcase_19 | AC | 562 ms
31,012 KB |
testcase_20 | AC | 608 ms
34,916 KB |
testcase_21 | AC | 562 ms
31,668 KB |
testcase_22 | AC | 568 ms
33,248 KB |
testcase_23 | AC | 214 ms
17,688 KB |
testcase_24 | AC | 222 ms
17,768 KB |
testcase_25 | AC | 149 ms
18,080 KB |
testcase_26 | AC | 363 ms
30,500 KB |
testcase_27 | AC | 224 ms
66,612 KB |
testcase_28 | AC | 414 ms
78,988 KB |
testcase_29 | AC | 394 ms
55,620 KB |
testcase_30 | AC | 408 ms
55,500 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; #define rep(i,n) for(int i=0;i<n;++i) int main() { int n; cin >> n; vector<vector<pair<int, int>>> g(n); rep(i, n - 1) { int a, b, c; cin >> a >> b >> c; --a, --b; g[a].emplace_back(b, c); g[b].emplace_back(a, c); } vector<int> siz(n, 1), x(n); auto dfs0 = [&](auto&& f, int cur, int par)->void { for (auto [to, weight] : g[cur]) { if (to == par)continue; x[to] = x[cur] ^ weight; f(f, to, cur); siz[cur] += siz[to]; } }; dfs0(dfs0, 0, -1); auto sorted_x = x; sort(sorted_x.begin(), sorted_x.end()); rep(i, n)x[i] = lower_bound(sorted_x.begin(), sorted_x.end(), x[i]) - sorted_x.begin();//compress ll ans = ll(n) * (n - 1); auto dfs1 = [&](auto&& f, int cur, int par)->map<int, pair<int, int>> { map<int, pair<int, int>> L;//{y,cnt} for (auto [to, weight] : g[cur]) { if (to == par)continue; auto R = f(f, to, cur); if (R.count(x[cur])) { ans -= ll(R[x[cur]].second) * (n - siz[to]);//case-2 ans -= ll(R[x[cur]].first) * R[x[cur]].second;//case-3 } if (L.size() > R.size())swap(L, R); for (auto [l_XOR, val] : L) { auto [y, cnt] = val; R[l_XOR].first += y; R[l_XOR].second += cnt; } swap(L, R); } if (L.count(x[cur])) { ans -= L[x[cur]].first;//case-1 } L[x[cur]] = { siz[cur],1 }; if (cur == 0) { for (auto [l_XOR, val] : L) { auto [y, cnt] = val; if (l_XOR != x[cur])ans -= ll(y) * cnt;//case-3 } } else ans += siz[cur];//case-3 return L; }; dfs1(dfs1, 0, -1); cout << ans << "\n"; return 0; }