結果

問題 No.1769 Don't Stop the Game
ユーザー first_vilfirst_vil
提出日時 2021-10-22 16:01:49
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 533 ms / 3,000 ms
コード長 1,538 bytes
コンパイル時間 2,099 ms
コンパイル使用メモリ 217,288 KB
実行使用メモリ 80,544 KB
最終ジャッジ日時 2024-06-29 17:46:05
合計ジャッジ時間 10,918 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 3 ms
6,940 KB
testcase_08 AC 243 ms
14,164 KB
testcase_09 AC 220 ms
14,080 KB
testcase_10 AC 339 ms
20,748 KB
testcase_11 AC 181 ms
11,248 KB
testcase_12 AC 199 ms
16,008 KB
testcase_13 AC 205 ms
16,220 KB
testcase_14 AC 211 ms
16,204 KB
testcase_15 AC 254 ms
16,360 KB
testcase_16 AC 325 ms
16,960 KB
testcase_17 AC 441 ms
20,636 KB
testcase_18 AC 486 ms
29,760 KB
testcase_19 AC 519 ms
29,344 KB
testcase_20 AC 533 ms
33,508 KB
testcase_21 AC 497 ms
30,132 KB
testcase_22 AC 509 ms
31,688 KB
testcase_23 AC 195 ms
16,116 KB
testcase_24 AC 198 ms
16,312 KB
testcase_25 AC 136 ms
16,668 KB
testcase_26 AC 304 ms
29,084 KB
testcase_27 AC 207 ms
68,204 KB
testcase_28 AC 383 ms
80,544 KB
testcase_29 AC 361 ms
55,492 KB
testcase_30 AC 373 ms
55,516 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
                ans -= ll(R[XOR].first) * R[XOR].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);
            siz[cur] += siz[to];
        }
        if (L.count(XOR)) {
            ans -= L[XOR].first;//case-1
        }
        L[XOR] = { siz[cur],1 };
        if (cur == 0) {
            for (auto [l_XOR, val] : L) {
                auto [y, cnt] = val;
                if (l_XOR != XOR)ans -= ll(y) * cnt;//case-3
            }
        }
        else ans += siz[cur];//case-3
        return L;
    };
    dfs(dfs, 0, -1, 0);
    cout << ans << "\n";

    return 0;
}
0