結果

問題 No.875 Range Mindex Query
ユーザー titiatitia
提出日時 2019-09-06 21:54:24
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,639 ms / 2,000 ms
コード長 1,381 bytes
コンパイル時間 226 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 40,060 KB
最終ジャッジ日時 2024-06-24 17:40:02
合計ジャッジ時間 12,217 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,880 KB
testcase_01 AC 35 ms
11,136 KB
testcase_02 AC 38 ms
11,008 KB
testcase_03 AC 31 ms
10,752 KB
testcase_04 AC 33 ms
10,752 KB
testcase_05 AC 30 ms
10,880 KB
testcase_06 AC 34 ms
11,008 KB
testcase_07 AC 38 ms
11,008 KB
testcase_08 AC 32 ms
10,752 KB
testcase_09 AC 32 ms
10,752 KB
testcase_10 AC 37 ms
10,880 KB
testcase_11 AC 1,639 ms
38,404 KB
testcase_12 AC 1,282 ms
32,884 KB
testcase_13 AC 1,119 ms
32,204 KB
testcase_14 AC 1,091 ms
31,912 KB
testcase_15 AC 1,531 ms
37,816 KB
testcase_16 AC 1,247 ms
38,272 KB
testcase_17 AC 1,360 ms
40,060 KB
testcase_18 AC 1,308 ms
39,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N,Q=map(int,input().split())
A=list(map(int,input().split()))
Query=[list(map(int,input().split())) for i in range(Q)]

# Segment tree(1-indexed,再帰を使わないもの,最小値を求める)

seg_el=1<<(N.bit_length())# Segment treeの台の要素数
SEG=[1<<30]*(2*seg_el)# 1-indexedなので、要素数2*seg_el.Segment treeの初期値で初期化

for i in range(N):# Aを対応する箇所へupdate
    SEG[i+seg_el]=A[i]

for i in range(seg_el-1,0,-1):# 親の部分もupdate
    SEG[i]=min(SEG[i*2],SEG[i*2+1])

def update(n,x,seg_el):# A[n]をxへ更新(反映)
    i=n+seg_el
    SEG[i]=x
    i>>=1# 子ノードへ
    
    while i!=0:
        SEG[i]=min(SEG[i*2],SEG[i*2+1])
        i>>=1
        
def getvalues(l,r):# 区間[l,r)に関するminを調べる
    L=l+seg_el
    R=r+seg_el
    ANS=1<<30

    while L<R:
        if L & 1:
            ANS=min(ANS , SEG[L])
            L+=1

        if R & 1:
            R-=1
            ANS=min(ANS , SEG[R])
        L>>=1
        R>>=1

    return ANS

SC_IND=[-1]*(N+1)
for i,x in enumerate(A):
    SC_IND[x]=i


for q,x,y in Query:
    if q==1:
        x0,y0=SEG[seg_el+x-1],SEG[seg_el+y-1]
        update(x-1,y0,seg_el)
        update(y-1,x0,seg_el)
        SC_IND[x0],SC_IND[y0]=SC_IND[y0],SC_IND[x0]
    else:
        print(SC_IND[getvalues(x-1,y)]+1)


        
    
0