結果

問題 No.875 Range Mindex Query
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2020-09-03 14:16:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 357 ms / 2,000 ms
コード長 1,270 bytes
コンパイル時間 177 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 91,456 KB
最終ジャッジ日時 2024-05-02 22:21:18
合計ジャッジ時間 5,963 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,352 KB
testcase_01 AC 61 ms
72,960 KB
testcase_02 AC 83 ms
76,160 KB
testcase_03 AC 44 ms
60,800 KB
testcase_04 AC 61 ms
68,224 KB
testcase_05 AC 52 ms
65,792 KB
testcase_06 AC 69 ms
73,088 KB
testcase_07 AC 65 ms
71,168 KB
testcase_08 AC 62 ms
70,016 KB
testcase_09 AC 55 ms
68,736 KB
testcase_10 AC 73 ms
76,356 KB
testcase_11 AC 354 ms
88,200 KB
testcase_12 AC 324 ms
84,208 KB
testcase_13 AC 315 ms
91,456 KB
testcase_14 AC 308 ms
89,652 KB
testcase_15 AC 357 ms
90,812 KB
testcase_16 AC 308 ms
90,940 KB
testcase_17 AC 333 ms
90,880 KB
testcase_18 AC 333 ms
91,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#0-indexed , 半開区間[a,b)
#calc変更で演算変更
class SegTree:

    def __init__(self,N,first):
        self.NO = 2**(N-1).bit_length()
        self.First = first
        self.data = [first] * (2*self.NO)

    def calc(self,l,r):
        return min(l,r)

    def update(self,ind,x):
        ind += self.NO - 1
        self.data[ind] = x
        while ind >= 0:
            ind = (ind - 1)//2
            self.data[ind] = self.calc(self.data[2*ind+1],self.data[2*ind+2])

    def query(self,l,r):
        L = l + self.NO
        R = r + self.NO
        s = self.First
        while L < R:
            if R & 1:
                R -= 1
                s = self.calc(s , self.data[R-1])
            if L & 1:
                s = self.calc(s , self.data[L-1])
                L += 1
            L >>= 1
            R >>= 1
        return s

from sys import stdin
N,Q = map(int,stdin.readline().split())
a = list(map(int,stdin.readline().split()))

T = SegTree(N,(float("inf"),-1))
for i in range(N):
    T.update(i,(a[i],i))

for i in range(Q):
    s,l,r = map(int,stdin.readline().split())
    l -= 1
    r -= 1

    if s == 1:
        a[l],a[r] = a[r],a[l]
        T.update(l,(a[l],l))
        T.update(r,(a[r],r))
    else:
        print(T.query(l,r+1)[1] + 1)
0