結果

問題 No.875 Range Mindex Query
ユーザー DrDrpilotDrDrpilot
提出日時 2022-06-21 17:10:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 617 ms / 2,000 ms
コード長 1,752 bytes
コンパイル時間 197 ms
コンパイル使用メモリ 82,380 KB
実行使用メモリ 92,316 KB
最終ジャッジ日時 2024-10-14 11:06:33
合計ジャッジ時間 7,699 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,096 KB
testcase_01 AC 73 ms
70,784 KB
testcase_02 AC 88 ms
75,512 KB
testcase_03 AC 47 ms
59,776 KB
testcase_04 AC 60 ms
66,048 KB
testcase_05 AC 47 ms
59,008 KB
testcase_06 AC 69 ms
69,888 KB
testcase_07 AC 77 ms
73,216 KB
testcase_08 AC 60 ms
65,792 KB
testcase_09 AC 60 ms
65,664 KB
testcase_10 AC 85 ms
75,520 KB
testcase_11 AC 617 ms
88,704 KB
testcase_12 AC 568 ms
84,764 KB
testcase_13 AC 547 ms
92,032 KB
testcase_14 AC 536 ms
90,496 KB
testcase_15 AC 612 ms
92,316 KB
testcase_16 AC 517 ms
92,032 KB
testcase_17 AC 545 ms
92,160 KB
testcase_18 AC 523 ms
92,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def segfunc(x,y):
    return min(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()))
lis=[0]*(n+1)
for i in range(n):
    lis[a[i]]=i
seg=SegTree(a,10**18,segfunc)
for _ in range(q):
    com,x,y=map(int,input().split())
    x-=1;y-=1
    if com==2:
        num=seg.query(x,y)
        #print(num)
        print(lis[num]+1)
    else:
        num_x=seg.select(x);num_y=seg.select(y)
        #print(num_x,num_y)
        point_num_x=lis[num_x];point_num_y=lis[num_y]
        lis[num_x]=point_num_y
        lis[num_y]=point_num_x
        seg.update(x,num_y)
        seg.update(y,num_x)
0