結果
問題 | No.875 Range Mindex Query |
ユーザー | hase_0o0 |
提出日時 | 2019-11-21 00:35:08 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 600 ms / 2,000 ms |
コード長 | 1,520 bytes |
コンパイル時間 | 334 ms |
コンパイル使用メモリ | 82,364 KB |
実行使用メモリ | 95,292 KB |
最終ジャッジ日時 | 2024-10-08 01:28:33 |
合計ジャッジ時間 | 7,353 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 42 ms
53,632 KB |
testcase_01 | AC | 76 ms
72,192 KB |
testcase_02 | AC | 95 ms
75,904 KB |
testcase_03 | AC | 51 ms
61,568 KB |
testcase_04 | AC | 65 ms
67,712 KB |
testcase_05 | AC | 55 ms
64,384 KB |
testcase_06 | AC | 76 ms
71,680 KB |
testcase_07 | AC | 79 ms
72,832 KB |
testcase_08 | AC | 65 ms
67,928 KB |
testcase_09 | AC | 63 ms
67,548 KB |
testcase_10 | AC | 93 ms
76,212 KB |
testcase_11 | AC | 579 ms
88,064 KB |
testcase_12 | AC | 517 ms
86,960 KB |
testcase_13 | AC | 486 ms
94,888 KB |
testcase_14 | AC | 566 ms
93,400 KB |
testcase_15 | AC | 600 ms
94,608 KB |
testcase_16 | AC | 565 ms
95,292 KB |
testcase_17 | AC | 586 ms
94,768 KB |
testcase_18 | AC | 559 ms
94,896 KB |
ソースコード
def func(x,y): return min(x,y) class SegmentTree: def __init__(self, n): #a1, a2, ..., an n_ = 1 while n_ < n: n_ *= 2 self.n = n_ self.arr = [10**6] * (2*self.n-1) def update(self, k, a): #0_indexed k += self.n - 1 self.arr[k] = a while k > 0: k = (k-1) // 2 self.arr[k] = func(self.arr[2*k+1], self.arr[2*k+2]) def query(self, l, r):#[l,r)の値を返す L, R = l+self.n, r+self.n ide_ele = 10**6 #単位元(ide_ele)は、区間外の値などに設定する値です。 #ex) 最小値のセグ木 → +inf # 和のセグ木 → 0 # 積のセグ木 → 1 # gcdのセグ木 → 0 res = ide_ele while L < R: if R & 1: R -= 1 res = func(res, self.arr[R-1]) if L & 1: res = func(res, self.arr[L-1]) L += 1 L >>= 1 R >>= 1 return res n,q=map(int,input().split()) a=list(map(int,input().split())) sg=SegmentTree(n) for i in range(1,n+1): sg.update(i,a[i-1]) from collections import defaultdict d=defaultdict(int) for i in range(n): d[a[i]]=i+1 for _ in range(q): k,l,r=map(int,input().split()) if k==1: sg.update(l,a[r-1]) sg.update(r,a[l-1]) d[a[l-1]],d[a[r-1]]=d[a[r-1]],d[a[l-1]] a[l-1],a[r-1]=a[r-1],a[l-1] else: print(d[sg.query(l,r+1)])