結果

問題 No.2377 SUM AND XOR on Tree
ユーザー poyonpoyon
提出日時 2023-06-12 21:18:27
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 524 ms / 4,000 ms
コード長 2,589 bytes
コンパイル時間 7,233 ms
コンパイル使用メモリ 337,512 KB
実行使用メモリ 42,720 KB
最終ジャッジ日時 2024-07-06 23:50:22
合計ジャッジ時間 18,407 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 1 ms
6,812 KB
testcase_02 AC 1 ms
6,816 KB
testcase_03 AC 1 ms
6,816 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 1 ms
6,940 KB
testcase_08 AC 502 ms
36,876 KB
testcase_09 AC 508 ms
36,148 KB
testcase_10 AC 509 ms
35,852 KB
testcase_11 AC 494 ms
37,556 KB
testcase_12 AC 515 ms
36,000 KB
testcase_13 AC 524 ms
37,284 KB
testcase_14 AC 475 ms
27,108 KB
testcase_15 AC 497 ms
36,604 KB
testcase_16 AC 475 ms
26,884 KB
testcase_17 AC 489 ms
36,104 KB
testcase_18 AC 3 ms
6,944 KB
testcase_19 AC 2 ms
6,940 KB
testcase_20 AC 2 ms
6,940 KB
testcase_21 AC 2 ms
6,940 KB
testcase_22 AC 2 ms
6,944 KB
testcase_23 AC 485 ms
26,092 KB
testcase_24 AC 504 ms
26,044 KB
testcase_25 AC 491 ms
36,388 KB
testcase_26 AC 359 ms
42,720 KB
testcase_27 AC 358 ms
41,988 KB
testcase_28 AC 361 ms
41,748 KB
testcase_29 AC 288 ms
28,208 KB
testcase_30 AC 285 ms
27,996 KB
testcase_31 AC 285 ms
29,028 KB
testcase_32 AC 331 ms
35,508 KB
testcase_33 AC 336 ms
36,620 KB
testcase_34 AC 340 ms
35,924 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

// Validate Input by testlib.h

// clang-format off
#include <bits/stdc++.h>
using namespace std;
using ll = long long;

#if __has_include("testlib.h")
    #include "testlib.h"
#else
    #include "/opt/testlib/testlib.h"
#endif

#include <atcoder/modint>
#include <atcoder/dsu>
using namespace atcoder;

using mint = modint998244353;

// clang-format on
int main(int argc, char* argv[]) {
    // Validate Input
    // Ref: https://github.com/MikeMirzayanov/testlib/blob/master/validators/undirected-tree-validator.cpp
    registerValidation(argc, argv);

    int N = inf.readInt(2, (int)1e5, "N");
    inf.readEoln();

    dsu uf(N);
    set<pair<int, int>> edges;
    vector<vector<int>> G(N);
    for (int i = 0; i < N - 1; i++) {
        int u = inf.readInt(1, N, "u_i");
        inf.readSpace();
        int v = inf.readInt(1, N, "v_i");
        inf.readEoln();

        ensuref(u != v, "Tree can't contain loops");
        ensuref(edges.count(make_pair(u, v)) == 0, "Tree can't contain multiple edges between a pair of vertices");

        edges.insert(make_pair(u, v));
        edges.insert(make_pair(v, u));

        ensuref(not uf.same(u - 1, v - 1), "Tree can't contain cycles");
        uf.merge(u - 1, v - 1);

        G[u - 1].push_back(v - 1);
        G[v - 1].push_back(u - 1);
    }
    ensuref(uf.size(0) == N, "Tree must be a connected graph");

    vector<int> A(N);
    const int MAX_A = (1 << 30) - 1;
    for (int i = 0; i < N; i++) {
        A[i] = inf.readInt(0, MAX_A, "A_i");
        if (i < N - 1) {
            inf.readSpace();
        } else {
            inf.readEoln();
        }
    }

    inf.readEof();

    // Solve
    mint ans = 0;
    for (int b = 0; b < 30; b++) {
        auto dfs = [&](auto&& self, int u, int p) -> vector<mint> {
            vector<mint> dp(2);
            dp[(A[u] >> b) & 1]++;
            for (int v : G[u]) {
                if (v == p) { continue; }
                auto dp_v = self(self, v, u);

                vector<mint> dp_new(2);

                // 辺 (u, v) を削除する
                dp_new[0] += dp[0] * dp_v[1];
                dp_new[1] += dp[1] * dp_v[1];

                // 辺 (u, v) を削除しない(繋ぐ)
                dp_new[0] += dp[0] * dp_v[0];
                dp_new[1] += dp[0] * dp_v[1];
                dp_new[1] += dp[1] * dp_v[0];
                dp_new[0] += dp[1] * dp_v[1];

                swap(dp, dp_new);
            }
            return dp;
        };
        auto dp = dfs(dfs, 0, -1);
        ans += (1 << b) * dp[1];
    }
    cout << ans.val() << '\n';

    return 0;
}
0