結果

問題 No.2377 SUM AND XOR on Tree
ユーザー ああいいああいい
提出日時 2023-07-07 23:31:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,817 ms / 4,000 ms
コード長 1,062 bytes
コンパイル時間 366 ms
コンパイル使用メモリ 82,108 KB
実行使用メモリ 300,640 KB
最終ジャッジ日時 2024-07-21 19:56:47
合計ジャッジ時間 46,804 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,776 KB
testcase_01 AC 40 ms
53,136 KB
testcase_02 AC 39 ms
52,408 KB
testcase_03 AC 38 ms
53,692 KB
testcase_04 AC 37 ms
53,724 KB
testcase_05 AC 38 ms
53,108 KB
testcase_06 AC 38 ms
52,924 KB
testcase_07 AC 40 ms
54,564 KB
testcase_08 AC 2,758 ms
282,048 KB
testcase_09 AC 2,817 ms
281,624 KB
testcase_10 AC 2,687 ms
282,784 KB
testcase_11 AC 2,337 ms
283,620 KB
testcase_12 AC 2,602 ms
290,524 KB
testcase_13 AC 2,803 ms
281,156 KB
testcase_14 AC 2,302 ms
285,772 KB
testcase_15 AC 2,624 ms
281,044 KB
testcase_16 AC 2,630 ms
287,684 KB
testcase_17 AC 2,529 ms
287,452 KB
testcase_18 AC 67 ms
70,652 KB
testcase_19 AC 66 ms
71,096 KB
testcase_20 AC 61 ms
68,544 KB
testcase_21 AC 60 ms
68,840 KB
testcase_22 AC 62 ms
67,692 KB
testcase_23 AC 2,731 ms
282,328 KB
testcase_24 AC 2,383 ms
283,972 KB
testcase_25 AC 2,676 ms
282,244 KB
testcase_26 AC 1,001 ms
283,908 KB
testcase_27 AC 998 ms
284,292 KB
testcase_28 AC 996 ms
284,032 KB
testcase_29 AC 1,062 ms
300,640 KB
testcase_30 AC 1,067 ms
300,292 KB
testcase_31 AC 1,077 ms
299,684 KB
testcase_32 AC 1,331 ms
282,532 KB
testcase_33 AC 1,323 ms
282,100 KB
testcase_34 AC 1,301 ms
282,404 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
G = [[] for _ in range(N)]
for _ in range(N - 1):
    u,v = map(int,input().split())
    u -= 1
    v -= 1
    G[u].append(v)
    G[v].append(u)

A = list(map(int,input().split()))
P = 998244353

ans = 0
for i in range(30):
    dp = [[0] * 2 for _ in range(N)]
    stack = [(0,-1),(~0,-1)]

    while stack:
        now,parent = stack.pop()
        if now < 0:
            now = ~now
            for v in G[now]:
                if v != parent:
                    stack.append((v,now))
                    stack.append((~v,now))
            continue

        u = (A[now] >> i) & 1
        dp[now][u] = 1
        a = dp[now][0]
        b = dp[now][1]
        
        for v in G[now]:
            if v == parent:continue
            c = a * dp[v][0] + a * dp[v][1] + b * dp[v][1]
            d = a * dp[v][1] + b * dp[v][1] + b * dp[v][0]
            c %= P
            d %= P
            a = c
            b = d
        dp[now][0] = a
        dp[now][1] = b
    #print(dp)
    ans += dp[0][1] * (1 << i)
    ans %= P
    #print(ans)
print(ans)
0