結果

問題 No.875 Range Mindex Query
ユーザー c-yanc-yan
提出日時 2021-01-25 15:10:56
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,538 ms / 2,000 ms
コード長 1,834 bytes
コンパイル時間 730 ms
コンパイル使用メモリ 10,844 KB
実行使用メモリ 26,588 KB
最終ジャッジ日時 2023-09-04 06:18:34
合計ジャッジ時間 11,851 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 16 ms
8,088 KB
testcase_01 AC 22 ms
8,072 KB
testcase_02 AC 23 ms
8,160 KB
testcase_03 AC 17 ms
8,048 KB
testcase_04 AC 19 ms
8,076 KB
testcase_05 AC 18 ms
8,024 KB
testcase_06 AC 21 ms
8,096 KB
testcase_07 AC 21 ms
8,200 KB
testcase_08 AC 20 ms
8,024 KB
testcase_09 AC 19 ms
8,100 KB
testcase_10 AC 24 ms
8,164 KB
testcase_11 AC 1,538 ms
22,248 KB
testcase_12 AC 1,215 ms
18,220 KB
testcase_13 AC 1,071 ms
24,540 KB
testcase_14 AC 1,049 ms
23,660 KB
testcase_15 AC 1,464 ms
24,840 KB
testcase_16 AC 1,083 ms
25,824 KB
testcase_17 AC 1,163 ms
26,424 KB
testcase_18 AC 1,145 ms
26,588 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin


class SegmentTree:
    def __init__(self, size, op, e):
        self._op = op
        self._e = e
        self._size = size
        t = 1
        while t < size:
            t *= 2
        self._offset = t - 1
        self._data = [e] * (t * 2 - 1)

    def __getitem__(self, key):
        return self._data[self._offset + key]

    def __setitem__(self, key, value):
        op = self._op
        data = self._data
        i = self._offset + key
        data[i] = value
        while i >= 1:
            i = (i - 1) // 2
            data[i] = op(data[i * 2 + 1], data[i * 2 + 2])

    def build(self, iterable):
        op = self._op
        data = self._data
        data[self._offset:self._offset + self._size] = iterable
        for i in range(self._offset - 1, -1, -1):
            data[i] = op(data[i * 2 + 1], data[i * 2 + 2])

    def query(self, start, stop):
        def iter_segments(data, l, r):
            while l < r:
                if l & 1 == 0:
                    yield data[l]
                if r & 1 == 0:
                    yield data[r - 1]
                l = l // 2
                r = (r - 1) // 2
        op = self._op
        it = iter_segments(self._data, start + self._offset,
                           stop + self._offset)
        result = self._e
        for v in it:
            result = op(result, v)
        return result


readline = stdin.readline

N, Q = map(int, readline().split())
a = list(map(int, readline().split()))

st = SegmentTree(N, min, (10 ** 18, -1))
st.build((a[i], i + 1) for i in range(N))

result = []
for _ in range(Q):
    t, l, r = map(int, readline().split())
    l, r = l - 1, r - 1
    if t == 1:
        st[l], st[r] = (st[r][0], l + 1), (st[l][0], r + 1)
    elif t == 2:
        result.append(st.query(l, r + 1)[1])
print(*result, sep='\n')
0