結果

問題 No.1091 Range Xor Query
ユーザー DrDrpilotDrDrpilot
提出日時 2022-04-13 14:38:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 662 ms / 2,000 ms
コード長 1,359 bytes
コンパイル時間 227 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 110,208 KB
最終ジャッジ日時 2024-06-06 01:54:25
合計ジャッジ時間 15,756 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,096 KB
testcase_01 AC 35 ms
51,712 KB
testcase_02 AC 36 ms
51,968 KB
testcase_03 AC 172 ms
95,744 KB
testcase_04 AC 438 ms
79,616 KB
testcase_05 AC 447 ms
109,952 KB
testcase_06 AC 80 ms
78,720 KB
testcase_07 AC 477 ms
91,392 KB
testcase_08 AC 623 ms
95,744 KB
testcase_09 AC 376 ms
81,408 KB
testcase_10 AC 458 ms
100,224 KB
testcase_11 AC 562 ms
106,240 KB
testcase_12 AC 365 ms
106,368 KB
testcase_13 AC 662 ms
93,184 KB
testcase_14 AC 491 ms
100,224 KB
testcase_15 AC 520 ms
106,112 KB
testcase_16 AC 515 ms
82,296 KB
testcase_17 AC 662 ms
103,040 KB
testcase_18 AC 196 ms
78,336 KB
testcase_19 AC 207 ms
93,184 KB
testcase_20 AC 633 ms
93,440 KB
testcase_21 AC 371 ms
78,244 KB
testcase_22 AC 603 ms
102,912 KB
testcase_23 AC 577 ms
110,208 KB
testcase_24 AC 597 ms
110,080 KB
testcase_25 AC 573 ms
109,696 KB
testcase_26 AC 593 ms
110,080 KB
testcase_27 AC 584 ms
110,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def segfunc(x,y):
    return x^y

class SegTree:
    def __init__(self,x_list,init,segfunc):
        self.init=init
        self.segfunc=segfunc
        self.Height=len(x_list).bit_length()+1
        self.Tree=[init]*(2**self.Height)
        self.num=2**(self.Height-1)
        for i in range(len(x_list)):
            self.Tree[2**(self.Height-1)+i]=x_list[i]
        for i in range(2**(self.Height-1)-1,0,-1):
            self.Tree[i]=segfunc(self.Tree[2*i],self.Tree[2*i+1])

    def select(self,k):
        return self.Tree[k+self.num]

    def update(self,k,x):
        i=k+self.num
        self.Tree[i]=x
        while i>1:
            if i%2==0:
                self.Tree[i//2]=self.segfunc(self.Tree[i],self.Tree[i+1])
            else:
                self.Tree[i//2]=self.segfunc(self.Tree[i-1],self.Tree[i])
            i//=2

    def query(self,l,r):
        result=self.init
        l+=self.num
        r+=self.num+1

        while l<r:
            if l%2==1:
                result=self.segfunc(result,self.Tree[l])
                l+=1
            if r%2==1:
                result=self.segfunc(result,self.Tree[r-1])
            l//=2
            r//=2
        return result
n,q=map(int,input().split())
a=list(map(int,input().split()))
seg=SegTree(a,0,segfunc)
for _ in range(q):
    l,r=map(int,input().split())
    print(seg.query(l-1,r-1))
0