結果

問題 No.2377 SUM AND XOR on Tree
ユーザー ぷらぷら
提出日時 2023-07-07 22:06:43
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 683 ms / 4,000 ms
コード長 1,487 bytes
コンパイル時間 2,567 ms
コンパイル使用メモリ 206,916 KB
実行使用メモリ 19,584 KB
最終ジャッジ日時 2024-07-21 18:09:18
合計ジャッジ時間 12,875 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 2 ms
5,376 KB
testcase_08 AC 667 ms
10,368 KB
testcase_09 AC 683 ms
10,368 KB
testcase_10 AC 675 ms
10,240 KB
testcase_11 AC 629 ms
10,368 KB
testcase_12 AC 479 ms
10,368 KB
testcase_13 AC 438 ms
10,240 KB
testcase_14 AC 405 ms
9,984 KB
testcase_15 AC 479 ms
10,368 KB
testcase_16 AC 420 ms
10,112 KB
testcase_17 AC 446 ms
10,368 KB
testcase_18 AC 2 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,940 KB
testcase_23 AC 395 ms
10,368 KB
testcase_24 AC 470 ms
10,368 KB
testcase_25 AC 467 ms
10,368 KB
testcase_26 AC 216 ms
19,584 KB
testcase_27 AC 217 ms
19,584 KB
testcase_28 AC 215 ms
19,584 KB
testcase_29 AC 161 ms
10,640 KB
testcase_30 AC 162 ms
10,636 KB
testcase_31 AC 161 ms
10,636 KB
testcase_32 AC 180 ms
10,240 KB
testcase_33 AC 176 ms
10,240 KB
testcase_34 AC 178 ms
10,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

constexpr int mod = 998244353;

void mpl(int &x,int y) {
    x += y;
    if(x >= mod) x -= mod;
}

int f[100100];
int dp[100100][2];

void dfs(int n,int p,vector<vector<int>>&ki) {
    dp[n][f[n]] = 1;
    for(int i:ki[n]) {
        if(i == p) {
            continue;
        }
        dfs(i,n,ki);
        vector<int>tmp(2);
        for(int j = 0; j < 2; j++) {
            for(int k = 0; k < 2; k++) {
                if(k == 0) {
                    mpl(tmp[j],1ll*dp[n][j]*dp[i][k]%mod);
                }
                else {
                    mpl(tmp[j^1],1ll*dp[n][j]*dp[i][k]%mod);
                    mpl(tmp[j],1ll*dp[n][j]*dp[i][k]%mod);
                }
            }
        }
        dp[n][0] = tmp[0];
        dp[n][1] = tmp[1];
    }
}

int main() {
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    int N;
    cin >> N;
    vector<vector<int>>ki(N);
    for(int i = 0; i < N-1; i++) {
        int u,v;
        cin >> u >> v;
        u--;
        v--;
        ki[u].push_back(v);
        ki[v].push_back(u);
    }
    vector<int>A(N);
    for(int i = 0; i < N; i++) {
        cin >> A[i];
    }
    int ans = 0;
    for(int i = 0; i < 30; i++) {
        for(int j = 0; j < N; j++) {
            f[j] = 1 & (A[j] >> i);
            for(int k = 0; k < 2; k++) {
                dp[j][k] = 0;
            }
        }
        dfs(0,-1,ki);
        mpl(ans,(1ll << i)*dp[0][1]%mod);
    }
    cout << ans << "\n";
}
0