結果
問題 | No.1641 Tree Xor Query |
ユーザー | LyricalMaestro |
提出日時 | 2024-09-24 00:43:16 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 396 ms / 5,000 ms |
コード長 | 3,099 bytes |
コンパイル時間 | 2,390 ms |
コンパイル使用メモリ | 82,472 KB |
実行使用メモリ | 120,992 KB |
最終ジャッジ日時 | 2024-09-24 06:06:10 |
合計ジャッジ時間 | 5,797 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 38 ms
54,816 KB |
testcase_01 | AC | 37 ms
55,768 KB |
testcase_02 | AC | 39 ms
54,740 KB |
testcase_03 | AC | 39 ms
55,004 KB |
testcase_04 | AC | 40 ms
55,432 KB |
testcase_05 | AC | 41 ms
56,020 KB |
testcase_06 | AC | 43 ms
56,332 KB |
testcase_07 | AC | 41 ms
56,252 KB |
testcase_08 | AC | 46 ms
54,192 KB |
testcase_09 | AC | 39 ms
54,912 KB |
testcase_10 | AC | 41 ms
55,508 KB |
testcase_11 | AC | 39 ms
56,228 KB |
testcase_12 | AC | 38 ms
55,620 KB |
testcase_13 | AC | 396 ms
120,992 KB |
testcase_14 | AC | 391 ms
120,688 KB |
testcase_15 | AC | 119 ms
78,736 KB |
testcase_16 | AC | 174 ms
81,616 KB |
testcase_17 | AC | 167 ms
80,080 KB |
testcase_18 | AC | 128 ms
79,576 KB |
testcase_19 | AC | 123 ms
78,988 KB |
testcase_20 | AC | 336 ms
119,816 KB |
ソースコード
## https://yukicoder.me/problems/no/1641 from collections import deque class SegmentTree: """ 非再帰版セグメント木。 更新は「加法」、取得は「最大値」のもの限定。 """ def __init__(self, init_array): n = 1 while n < len(init_array): n *= 2 self.size = n self.array = [0] * (2 * self.size) for i, a in enumerate(init_array): self.array[self.size + i] = a end_index = self.size start_index = end_index // 2 while start_index >= 1: for i in range(start_index, end_index): self.array[i] = self.array[2 * i] ^ self.array[2 * i + 1] end_index = start_index start_index = end_index // 2 def add(self, x, a): index = self.size + x self.array[index] ^= a while index > 1: index //= 2 self.array[index] = self.array[2 * index] ^ self.array[2 * index + 1] def get_max(self, l, r): L = self.size + l; R = self.size + r # 2. 区間[l, r)の最大値を求める s = 0 while L < R: if R & 1: R -= 1 s ^= self.array[R] if L & 1: s ^= self.array[L] L += 1 L >>= 1; R >>= 1 return s def main(): N, Q = map(int, input().split()) C = list(map(int, input().split())) next_nodes = [[] for _ in range(N)] for _ in range(N - 1): u, v = map(int, input().split()) next_nodes[u - 1].append(v - 1) next_nodes[v - 1].append(u - 1) txy = [] for _ in range(Q): t, x, y = map(int, input().split()) txy.append((t, x - 1, y)) # オイラーツアー eular_tour_index_map = [[-1, -1] for _ in range(N)] eular_tour_index = 0 parents = [-2] * N parents[0] = -1 stack = deque() stack.append((0, 0)) while len(stack) > 0: v, index = stack.pop() if index == 0: eular_tour_index_map[v][0] = eular_tour_index eular_tour_index += 1 while index < len(next_nodes[v]): w = next_nodes[v][index] if w == parents[v]: index +=1 continue parents[w] = v stack.append((v, index + 1)) stack.append((w, 0)) break if index == len(next_nodes[v]): eular_tour_index_map[v][1] = eular_tour_index eular_tour_index += 1 # オイラーツアーベースのセグメントツリー eular_tour = [0] * (2 * N) for i in range(N): eular_tour[eular_tour_index_map[i][0]] = C[i] seg_tree = SegmentTree(eular_tour) for t, x, y in txy: if t == 1: x_ = eular_tour_index_map[x][0] seg_tree.add(x_, y) else: # t= 2s in_, out_ = eular_tour_index_map[x] answer = seg_tree.get_max(in_, out_) print(answer) if __name__ == '__main__': main()