結果

問題 No.875 Range Mindex Query
ユーザー dangodango
提出日時 2023-07-08 09:17:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,512 ms / 2,000 ms
コード長 1,358 bytes
コンパイル時間 377 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 92,680 KB
最終ジャッジ日時 2024-07-22 05:09:51
合計ジャッジ時間 10,940 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,108 KB
testcase_01 AC 95 ms
75,988 KB
testcase_02 AC 102 ms
76,488 KB
testcase_03 AC 56 ms
65,756 KB
testcase_04 AC 91 ms
75,860 KB
testcase_05 AC 57 ms
66,404 KB
testcase_06 AC 91 ms
76,172 KB
testcase_07 AC 102 ms
76,024 KB
testcase_08 AC 84 ms
76,136 KB
testcase_09 AC 80 ms
74,524 KB
testcase_10 AC 130 ms
77,096 KB
testcase_11 AC 1,021 ms
88,644 KB
testcase_12 AC 858 ms
84,800 KB
testcase_13 AC 721 ms
92,588 KB
testcase_14 AC 724 ms
90,828 KB
testcase_15 AC 883 ms
92,456 KB
testcase_16 AC 1,400 ms
92,680 KB
testcase_17 AC 1,512 ms
92,416 KB
testcase_18 AC 1,264 ms
92,612 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
def chmin(a, b):
    if a > b:
        a = b
class SegmentTree:
    def __init__(self, sz):
        self.n = 2 ** math.ceil(math.log2(sz))
        self.dat = [int(2 ** 31 - 1) // 3] * (self.n * 2 - 1)
    def update(self, i, x):
        k = i + self.n - 1
        self.dat[k] = x
        while k > 0:
            k = (k - 1) // 2
            self.dat[k] = min(self.dat[k * 2 + 1], self.dat[k * 2 + 2])
    def rmin(self, ql, qr, i=0, il=0, ir=None):
        if ir is None:
            ir = self.n
        if qr <= il or ir <= ql:
            return int(2 ** 31 - 1) // 3
        elif ql <= il and ir <= qr:
            return self.dat[i]
        else:
            m = (il + ir) // 2
            return min(
                self.rmin(ql, qr, i * 2 + 1, il, m),
                self.rmin(ql, qr, i * 2 + 2, m, ir))
    def get(self, i):
        return self.dat[i + self.n - 1]
n, q = map(int, input().split())
a = list(map(lambda x: int(x) - 1, input().split()))
pos = [0] * n
seg = SegmentTree(n)
for i in range(n):
    pos[a[i]] = i
    seg.update(i, a[i])
for qq in range(q):
    t, i, j = map(int, input().split())
    i -= 1
    j -= 1
    if t == 1:
        ei = seg.get(i)
        ej = seg.get(j)
        seg.update(i, ej)
        seg.update(j, ei)
        pos[ei] = j
        pos[ej] = i
    else:
        print(pos[seg.rmin(i, j + 1)] + 1)
0