結果

問題 No.1769 Don't Stop the Game
ユーザー first_vilfirst_vil
提出日時 2021-10-21 20:30:12
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 699 ms / 3,000 ms
コード長 1,454 bytes
コンパイル時間 2,213 ms
コンパイル使用メモリ 216,456 KB
実行使用メモリ 89,912 KB
最終ジャッジ日時 2024-06-29 17:45:08
合計ジャッジ時間 13,424 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 3 ms
5,376 KB
testcase_08 AC 348 ms
13,952 KB
testcase_09 AC 307 ms
14,080 KB
testcase_10 AC 471 ms
20,864 KB
testcase_11 AC 253 ms
11,264 KB
testcase_12 AC 270 ms
16,000 KB
testcase_13 AC 273 ms
16,128 KB
testcase_14 AC 300 ms
16,128 KB
testcase_15 AC 336 ms
16,204 KB
testcase_16 AC 471 ms
16,768 KB
testcase_17 AC 582 ms
20,736 KB
testcase_18 AC 598 ms
29,648 KB
testcase_19 AC 629 ms
29,312 KB
testcase_20 AC 669 ms
33,336 KB
testcase_21 AC 688 ms
30,080 KB
testcase_22 AC 699 ms
31,688 KB
testcase_23 AC 277 ms
16,128 KB
testcase_24 AC 273 ms
16,224 KB
testcase_25 AC 152 ms
16,544 KB
testcase_26 AC 358 ms
28,960 KB
testcase_27 AC 224 ms
77,508 KB
testcase_28 AC 433 ms
89,912 KB
testcase_29 AC 406 ms
60,188 KB
testcase_30 AC 415 ms
60,400 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 move(L);
    };
    dfs(dfs, 0, -1, 0);
    cout << ans << "\n";
    
    return 0;
}
0