結果
問題 | No.875 Range Mindex Query |
ユーザー | tachyon777 |
提出日時 | 2020-03-05 17:29:28 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,825 bytes |
コンパイル時間 | 236 ms |
コンパイル使用メモリ | 82,176 KB |
実行使用メモリ | 265,488 KB |
最終ジャッジ日時 | 2024-10-14 01:21:54 |
合計ジャッジ時間 | 6,354 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 40 ms
57,600 KB |
testcase_01 | AC | 67 ms
69,888 KB |
testcase_02 | AC | 85 ms
75,520 KB |
testcase_03 | AC | 51 ms
59,648 KB |
testcase_04 | AC | 58 ms
64,384 KB |
testcase_05 | AC | 48 ms
59,264 KB |
testcase_06 | AC | 71 ms
70,272 KB |
testcase_07 | AC | 73 ms
70,528 KB |
testcase_08 | AC | 61 ms
65,280 KB |
testcase_09 | AC | 60 ms
64,768 KB |
testcase_10 | AC | 82 ms
75,264 KB |
testcase_11 | TLE | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
ソースコード
import sys readline = sys.stdin.buffer.readline n,q = map(int,readline().split()) lst1 = list(map(int,readline().split())) #RMQ def segfunc(x,y): return min(x,y) def init(init_val): #渡されたリストでsegを初期化 #set_val for i in range(n): seg[i+num-1]=init_val[i] #built for i in range(num-2,-1,-1) : seg[i]=segfunc(seg[2*i+1],seg[2*i+2]) def update(k,x): #segの要素kをxに変更(セグ木全体の更新) k += num-1 seg[k] = x while k: k = (k-1)//2 seg[k] = segfunc(seg[k*2+1],seg[k*2+2]) def query(p,q): #区間[p,q)での、segfuncに準じた値を返す if q<=p: return ide_ele p += num-1 q += num-2 res=ide_ele while q-p>1: if p&1 == 0: res = segfunc(res,seg[p]) if q&1 == 1: res = segfunc(res,seg[q]) q -= 1 p = p//2 q = (q-1)//2 if p == q: res = segfunc(res,seg[p]) else: res = segfunc(segfunc(res,seg[p]),seg[q]) return res #####単位元###### """ 最小値のセグ木 → 10**9 (最小値の更新に影響しないため) 和のセグ木 → 0 (上の単位元の説明を参照) 積のセグ木 → 1 (上の単位元の説明を参照) gcdのセグ木 → 0 (gcdを更新しない値は0) """ ide_ele = 10**9 #num:n以上の最小の2のべき乗 num =2**(n-1).bit_length() seg=[ide_ele]*2*num #単位元の配列(計算結果に影響を及ぼさない配列)を作成 init(lst1) for i in range(q): com,l,r = map(int,readline().split()) l,r = l-1,r-1 if com == 1: upl = seg[num-1+r] upr = seg[num-1+l] update(l,upl) update(r,upr) else: a = query(l,r+1) print(seg[num-1:].index(query(l,r+1))+1)