結果

問題 No.1769 Don't Stop the Game
ユーザー first_vilfirst_vil
提出日時 2021-11-03 14:28:05
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 426 ms / 3,000 ms
コード長 1,558 bytes
コンパイル時間 2,002 ms
コンパイル使用メモリ 216,700 KB
実行使用メモリ 65,012 KB
最終ジャッジ日時 2024-06-29 18:02:30
合計ジャッジ時間 9,815 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 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,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 3 ms
6,940 KB
testcase_08 AC 206 ms
14,064 KB
testcase_09 AC 172 ms
13,184 KB
testcase_10 AC 266 ms
19,584 KB
testcase_11 AC 154 ms
11,080 KB
testcase_12 AC 220 ms
16,040 KB
testcase_13 AC 212 ms
16,200 KB
testcase_14 AC 214 ms
16,136 KB
testcase_15 AC 244 ms
16,136 KB
testcase_16 AC 287 ms
16,592 KB
testcase_17 AC 353 ms
19,600 KB
testcase_18 AC 403 ms
25,972 KB
testcase_19 AC 426 ms
27,204 KB
testcase_20 AC 411 ms
30,248 KB
testcase_21 AC 412 ms
27,328 KB
testcase_22 AC 414 ms
28,848 KB
testcase_23 AC 217 ms
16,328 KB
testcase_24 AC 211 ms
16,256 KB
testcase_25 AC 153 ms
16,672 KB
testcase_26 AC 249 ms
26,020 KB
testcase_27 AC 199 ms
55,668 KB
testcase_28 AC 285 ms
65,012 KB
testcase_29 AC 304 ms
55,056 KB
testcase_30 AC 294 ms
46,260 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)->unordered_map<int, pair<int, int>> {
        unordered_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