結果

問題 No.875 Range Mindex Query
ユーザー c-yanc-yan
提出日時 2021-01-25 15:00:54
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,650 ms / 2,000 ms
コード長 1,871 bytes
コンパイル時間 694 ms
コンパイル使用メモリ 10,968 KB
実行使用メモリ 27,244 KB
最終ジャッジ日時 2023-09-04 05:52:53
合計ジャッジ時間 12,244 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 18 ms
8,104 KB
testcase_01 AC 22 ms
8,136 KB
testcase_02 AC 25 ms
8,160 KB
testcase_03 AC 18 ms
8,160 KB
testcase_04 AC 20 ms
8,136 KB
testcase_05 AC 19 ms
8,104 KB
testcase_06 AC 24 ms
8,528 KB
testcase_07 AC 22 ms
8,028 KB
testcase_08 AC 21 ms
8,188 KB
testcase_09 AC 21 ms
8,072 KB
testcase_10 AC 24 ms
8,648 KB
testcase_11 AC 1,650 ms
22,188 KB
testcase_12 AC 1,295 ms
18,276 KB
testcase_13 AC 1,110 ms
24,536 KB
testcase_14 AC 1,095 ms
23,800 KB
testcase_15 AC 1,552 ms
24,964 KB
testcase_16 AC 1,139 ms
25,740 KB
testcase_17 AC 1,255 ms
27,244 KB
testcase_18 AC 1,192 ms
26,620 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, input().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:
        lv = st[l][0]
        rv = st[r][0]
        st[l] = (rv, l + 1)
        st[r] = (lv, r + 1)
    elif t == 2:
        result.append(st.query(l, r + 1)[1])
print(*result, sep='\n')
0