結果

問題 No.1091 Range Xor Query
ユーザー rlangevinrlangevin
提出日時 2023-01-02 17:56:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 291 ms / 2,000 ms
コード長 1,116 bytes
コンパイル時間 300 ms
コンパイル使用メモリ 82,520 KB
実行使用メモリ 109,212 KB
最終ジャッジ日時 2024-05-05 06:34:02
合計ジャッジ時間 9,569 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,460 KB
testcase_01 AC 34 ms
53,092 KB
testcase_02 AC 34 ms
53,216 KB
testcase_03 AC 139 ms
95,240 KB
testcase_04 AC 195 ms
79,552 KB
testcase_05 AC 237 ms
109,012 KB
testcase_06 AC 73 ms
79,172 KB
testcase_07 AC 223 ms
90,968 KB
testcase_08 AC 272 ms
95,328 KB
testcase_09 AC 182 ms
81,276 KB
testcase_10 AC 230 ms
99,904 KB
testcase_11 AC 266 ms
105,720 KB
testcase_12 AC 214 ms
105,416 KB
testcase_13 AC 279 ms
92,924 KB
testcase_14 AC 240 ms
99,596 KB
testcase_15 AC 249 ms
105,516 KB
testcase_16 AC 214 ms
81,976 KB
testcase_17 AC 291 ms
102,400 KB
testcase_18 AC 123 ms
78,320 KB
testcase_19 AC 150 ms
92,928 KB
testcase_20 AC 275 ms
92,940 KB
testcase_21 AC 171 ms
78,052 KB
testcase_22 AC 273 ms
102,304 KB
testcase_23 AC 204 ms
109,180 KB
testcase_24 AC 214 ms
109,004 KB
testcase_25 AC 218 ms
109,212 KB
testcase_26 AC 215 ms
109,212 KB
testcase_27 AC 220 ms
108,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline = sys.stdin.readline


class SegmentTree:
    def __init__(self, size, f=lambda x, y:x^y , default=10 ** 18):
        self.size = 2**(size-1).bit_length() 
        self.default = default
        self.dat = [default]*(self.size*2) 
        self.f = f

    def update(self, i, x):
        i += self.size
        self.dat[i] = x
        while i > 0:
            i >>= 1
            self.dat[i] = self.f(self.dat[i*2], self.dat[i*2+1])

    def query(self, l, r):
        l += self.size
        r += self.size
        lres, rres = self.default, self.default
        while l < r:
            if l & 1:
                lres = self.f(lres, self.dat[l])
                l += 1

            if r & 1:
                r -= 1
                rres = self.f(self.dat[r], rres) 
            l >>= 1
            r >>= 1
        res = self.f(lres, rres)
        return res
    
N, Q = map(int, readline().split())
A = list(map(int, readline().split()))
T = SegmentTree(N)
for i in range(N):
    T.update(i, A[i])
    
for i in range(Q):
    L, R = map(int, readline().split())
    L -= 1
    print(T.query(L, R))
0