結果

問題 No.1641 Tree Xor Query
ユーザー sotanishysotanishy
提出日時 2021-08-06 22:18:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 269 ms / 5,000 ms
コード長 1,418 bytes
コンパイル時間 160 ms
コンパイル使用メモリ 82,496 KB
実行使用メモリ 113,108 KB
最終ジャッジ日時 2024-09-17 02:21:32
合計ジャッジ時間 2,896 ms
ジャッジサーバーID
(参考情報)
judge6 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,996 KB
testcase_01 AC 39 ms
53,548 KB
testcase_02 AC 40 ms
52,144 KB
testcase_03 AC 41 ms
53,944 KB
testcase_04 AC 40 ms
54,412 KB
testcase_05 AC 40 ms
54,832 KB
testcase_06 AC 39 ms
52,812 KB
testcase_07 AC 40 ms
52,888 KB
testcase_08 AC 41 ms
52,688 KB
testcase_09 AC 40 ms
53,416 KB
testcase_10 AC 39 ms
53,168 KB
testcase_11 AC 39 ms
53,468 KB
testcase_12 AC 38 ms
52,824 KB
testcase_13 AC 268 ms
109,792 KB
testcase_14 AC 269 ms
109,772 KB
testcase_15 AC 87 ms
76,896 KB
testcase_16 AC 110 ms
77,960 KB
testcase_17 AC 108 ms
77,336 KB
testcase_18 AC 95 ms
77,136 KB
testcase_19 AC 78 ms
76,000 KB
testcase_20 AC 236 ms
113,108 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

class FenwickTree:
    def __init__(self, size):
        self.data = [0] * (size + 1)
        self.size = size

    # i is exclusive
    def prefix_sum(self, i):
        s = 0
        while i > 0:
            s ^= self.data[i]
            i -= i & -i
        return s

    def add(self, i, x):
        i += 1
        while i <= self.size:
            self.data[i] ^= x
            i += i & -i

def euler_tour(G, root):
    N = len(G)
    stack = [(root, -1, 1), (root, -1, 0)]
    et = []
    first = [-1] * N
    last = [-1] * N
    k = 0
    while stack:
        v, p, t = stack.pop()
        if t == 0:
            et.append(v)
            first[v] = k
            k += 1
            for c in G[v]:
                if c != p:
                    stack.append((c, v, 1))
                    stack.append((c, v, 0))
        else:
            last[v] = k
    return et, first, last

N, Q = map(int, input().split())
C = list(map(int, input().split()))
G = [[] for _ in range(N)]
for _ in range(N-1):
    a, b = map(lambda x: int(x) - 1, input().split())
    G[a].append(b)
    G[b].append(a)
et, first, last = euler_tour(G, 0)
ft = FenwickTree(N)
for i in range(N):
    ft.add(first[i], C[i])
for _ in range(Q):
    T, x, y = map(int, input().split())
    x -= 1
    if T == 1:
        ft.add(first[x], y)
    else:
        print(ft.prefix_sum(last[x]) ^ ft.prefix_sum(first[x]))
0