結果

問題 No.875 Range Mindex Query
ユーザー wattaiheiwattaihei
提出日時 2019-10-11 14:59:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 886 ms / 2,000 ms
コード長 1,523 bytes
コンパイル時間 189 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 164,360 KB
最終ジャッジ日時 2024-11-24 16:08:07
合計ジャッジ時間 7,032 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,736 KB
testcase_01 AC 57 ms
69,120 KB
testcase_02 AC 62 ms
71,808 KB
testcase_03 AC 41 ms
59,904 KB
testcase_04 AC 50 ms
65,152 KB
testcase_05 AC 49 ms
64,896 KB
testcase_06 AC 56 ms
69,376 KB
testcase_07 AC 57 ms
69,376 KB
testcase_08 AC 51 ms
65,664 KB
testcase_09 AC 52 ms
64,512 KB
testcase_10 AC 63 ms
73,088 KB
testcase_11 AC 812 ms
162,536 KB
testcase_12 AC 680 ms
138,764 KB
testcase_13 AC 658 ms
150,320 KB
testcase_14 AC 652 ms
146,200 KB
testcase_15 AC 886 ms
164,360 KB
testcase_16 AC 520 ms
128,804 KB
testcase_17 AC 522 ms
130,036 KB
testcase_18 AC 513 ms
130,636 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

# 初期化最大値
INF = 10**9

class SegmentTree:
    def __init__(self, N):
        self.N = 2**(N-1).bit_length()
        self.data = [[INF, -1] for _ in range(2*self.N-1)]

    # k番目の値(0-indexed)をaに変更
    def update(self, k, a):
        self.data[k+self.N-1] = [a, k]
        k += self.N - 1
        while k > 0:
            k = (k-1)//2
            if self.data[2*k+1][0] < self.data[2*k+2][0]:
                self.data[k] = self.data[2*k+1][:]
            else:
                self.data[k] = self.data[2*k+2][:]

    # [l, r)の最小値取得
    # kがNodeの番号、対応する区間が[a, b)
    def query_min(self, l, r):
        L = l + self.N
        R = r + self.N
        s = [INF, -1]
        while L < R:
            if R & 1:
                R -= 1
                if s[0] > self.data[R-1][0]:
                    s = self.data[R-1]
            if L & 1:
                if s[0] > self.data[L-1][0]:
                    s = self.data[L-1]
                L += 1
            L >>= 1; R >>= 1
        return s

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

ST = SegmentTree(N)

for i, a in enumerate(A):
    ST.update(i, a)

for com, l, r in Query:
    l -= 1
    r -= 1
    if com == 1:
        al = ST.query_min(l, l+1)[0]
        ar = ST.query_min(r, r+1)[0]
        ST.update(l, ar)
        ST.update(r, al)
    else:
        print(ST.query_min(l, r+1)[1]+1)
0