結果

問題 No.875 Range Mindex Query
ユーザー wattaiheiwattaihei
提出日時 2019-10-11 14:57:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 839 ms / 2,000 ms
コード長 1,516 bytes
コンパイル時間 185 ms
コンパイル使用メモリ 82,380 KB
実行使用メモリ 163,244 KB
最終ジャッジ日時 2024-11-24 16:05:13
合計ジャッジ時間 6,960 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,784 KB
testcase_01 AC 59 ms
70,104 KB
testcase_02 AC 65 ms
72,348 KB
testcase_03 AC 42 ms
61,232 KB
testcase_04 AC 51 ms
66,020 KB
testcase_05 AC 49 ms
65,364 KB
testcase_06 AC 61 ms
70,100 KB
testcase_07 AC 60 ms
71,652 KB
testcase_08 AC 52 ms
66,984 KB
testcase_09 AC 53 ms
66,940 KB
testcase_10 AC 67 ms
73,916 KB
testcase_11 AC 839 ms
163,072 KB
testcase_12 AC 692 ms
139,280 KB
testcase_13 AC 684 ms
148,760 KB
testcase_14 AC 688 ms
148,804 KB
testcase_15 AC 827 ms
163,244 KB
testcase_16 AC 477 ms
129,100 KB
testcase_17 AC 511 ms
130,708 KB
testcase_18 AC 513 ms
130,904 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(lambda x :int(x)-1, 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:
    if com == 0:
        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