結果

問題 No.2377 SUM AND XOR on Tree
ユーザー poyonpoyon
提出日時 2023-06-13 00:41:40
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 775 ms / 4,000 ms
コード長 2,685 bytes
コンパイル時間 8,863 ms
コンパイル使用メモリ 336,592 KB
実行使用メモリ 41,700 KB
最終ジャッジ日時 2024-07-06 23:51:17
合計ジャッジ時間 22,203 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 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 1 ms
5,376 KB
testcase_08 AC 737 ms
35,492 KB
testcase_09 AC 709 ms
35,632 KB
testcase_10 AC 674 ms
35,632 KB
testcase_11 AC 775 ms
35,628 KB
testcase_12 AC 767 ms
35,500 KB
testcase_13 AC 755 ms
35,496 KB
testcase_14 AC 647 ms
26,536 KB
testcase_15 AC 684 ms
35,472 KB
testcase_16 AC 727 ms
26,832 KB
testcase_17 AC 628 ms
35,192 KB
testcase_18 AC 3 ms
5,376 KB
testcase_19 AC 3 ms
5,376 KB
testcase_20 AC 3 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 687 ms
25,920 KB
testcase_24 AC 745 ms
25,924 KB
testcase_25 AC 697 ms
35,428 KB
testcase_26 AC 428 ms
41,700 KB
testcase_27 AC 430 ms
41,700 KB
testcase_28 AC 429 ms
41,692 KB
testcase_29 AC 326 ms
27,536 KB
testcase_30 AC 331 ms
27,540 KB
testcase_31 AC 333 ms
27,536 KB
testcase_32 AC 393 ms
35,464 KB
testcase_33 AC 450 ms
35,340 KB
testcase_34 AC 408 ms
35,344 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.readChar('\n');

    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.readChar('\n');

        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.readChar('\n');
        }
    }

    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