結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,272 KB
testcase_01 AC 41 ms
53,732 KB
testcase_02 AC 36 ms
53,940 KB
testcase_03 AC 142 ms
95,372 KB
testcase_04 AC 188 ms
79,824 KB
testcase_05 AC 237 ms
109,004 KB
testcase_06 AC 74 ms
79,240 KB
testcase_07 AC 214 ms
90,768 KB
testcase_08 AC 274 ms
95,124 KB
testcase_09 AC 168 ms
81,220 KB
testcase_10 AC 231 ms
99,620 KB
testcase_11 AC 266 ms
105,636 KB
testcase_12 AC 210 ms
106,060 KB
testcase_13 AC 269 ms
92,948 KB
testcase_14 AC 236 ms
99,856 KB
testcase_15 AC 260 ms
105,476 KB
testcase_16 AC 210 ms
82,296 KB
testcase_17 AC 295 ms
102,560 KB
testcase_18 AC 123 ms
78,252 KB
testcase_19 AC 152 ms
92,940 KB
testcase_20 AC 275 ms
92,892 KB
testcase_21 AC 164 ms
78,388 KB
testcase_22 AC 272 ms
102,384 KB
testcase_23 AC 221 ms
109,232 KB
testcase_24 AC 206 ms
109,428 KB
testcase_25 AC 206 ms
109,588 KB
testcase_26 AC 211 ms
109,092 KB
testcase_27 AC 211 ms
108,892 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