結果

問題 No.875 Range Mindex Query
ユーザー hase_0o0hase_0o0
提出日時 2019-10-25 11:45:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 344 ms / 2,000 ms
コード長 1,498 bytes
コンパイル時間 311 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 91,648 KB
最終ジャッジ日時 2024-07-19 08:07:00
合計ジャッジ時間 4,559 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,760 KB
testcase_01 AC 59 ms
68,864 KB
testcase_02 AC 68 ms
72,576 KB
testcase_03 AC 45 ms
60,672 KB
testcase_04 AC 56 ms
64,512 KB
testcase_05 AC 51 ms
63,360 KB
testcase_06 AC 63 ms
68,992 KB
testcase_07 AC 63 ms
69,120 KB
testcase_08 AC 61 ms
65,024 KB
testcase_09 AC 54 ms
65,152 KB
testcase_10 AC 72 ms
73,344 KB
testcase_11 AC 341 ms
88,328 KB
testcase_12 AC 313 ms
85,396 KB
testcase_13 AC 304 ms
90,880 KB
testcase_14 AC 302 ms
89,704 KB
testcase_15 AC 344 ms
91,648 KB
testcase_16 AC 296 ms
91,608 KB
testcase_17 AC 333 ms
91,136 KB
testcase_18 AC 311 ms
91,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=sys.stdin.readline

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**18] * (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] = min(self.arr[2*k+1], self.arr[2*k+2])

    def query(self, l, r):
        L, R = l+self.n, r+self.n
        ide_ele = float("inf")
#単位元(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


from collections import defaultdict
n,q=map(int,input().split())
a=list(map(int,input().split()))
st=SegmentTree(n)
idx=defaultdict(int)

for i in range(n):
    st.update(i,a[i])
    idx[a[i]]=i

for _ in range(q):
    i,l,r=map(int,input().split())
    if i==1:
        st.update(l-1,a[r-1])
        st.update(r-1,a[l-1])
        idx[a[r-1]]=l-1
        idx[a[l-1]]=r-1
        a[l-1],a[r-1]=a[r-1],a[l-1]
    else:
        x=st.query(l-1,r)
        print(idx[x]+1)
0