結果

問題 No.1769 Don't Stop the Game
ユーザー first_vilfirst_vil
提出日時 2021-10-21 13:24:23
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 675 ms / 3,000 ms
コード長 1,448 bytes
コンパイル時間 2,384 ms
コンパイル使用メモリ 217,320 KB
実行使用メモリ 80,512 KB
最終ジャッジ日時 2024-06-29 17:44:23
合計ジャッジ時間 13,430 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 3 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 3 ms
5,376 KB
testcase_08 AC 357 ms
14,080 KB
testcase_09 AC 307 ms
14,080 KB
testcase_10 AC 461 ms
20,736 KB
testcase_11 AC 260 ms
11,392 KB
testcase_12 AC 265 ms
16,000 KB
testcase_13 AC 265 ms
16,128 KB
testcase_14 AC 278 ms
16,128 KB
testcase_15 AC 306 ms
16,256 KB
testcase_16 AC 424 ms
16,768 KB
testcase_17 AC 583 ms
20,608 KB
testcase_18 AC 639 ms
29,824 KB
testcase_19 AC 626 ms
29,312 KB
testcase_20 AC 658 ms
33,408 KB
testcase_21 AC 675 ms
29,952 KB
testcase_22 AC 672 ms
31,832 KB
testcase_23 AC 276 ms
16,120 KB
testcase_24 AC 249 ms
16,128 KB
testcase_25 AC 157 ms
16,544 KB
testcase_26 AC 363 ms
28,960 KB
testcase_27 AC 232 ms
68,096 KB
testcase_28 AC 421 ms
80,512 KB
testcase_29 AC 396 ms
55,496 KB
testcase_30 AC 416 ms
55,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#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);
    ll ans = ll(n) * (n - 1);
    auto dfs = [&](auto&& f, int cur, int par, int XOR)->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, XOR ^ weight);
            if (R.count(XOR)) {
                ans -= ll(R[XOR].second) * (n - siz[to]);//case-2
            }
            if (L.size() > R.size())swap(L, R);
            for (auto [l_XOR, val] : L) {
                auto [y, cnt] = val;
                if (l_XOR != XOR && R.count(l_XOR)) {
                    ans -= ll(cnt) * R[l_XOR].first;//case-3-1
                    ans -= ll(R[l_XOR].second) * y;//case-3-2
                }
                R[l_XOR].first += y;
                R[l_XOR].second += cnt;
            }
            swap(L, R);
            siz[cur] += siz[to];
        }
        if (L.count(XOR)) {
            ans -= L[XOR].first;//case-1
        }
        L[XOR] = { siz[cur],1 };
        return L;
    };
    dfs(dfs, 0, -1, 0);
    cout << ans << "\n";
    
    return 0;
}
0