結果

問題 No.875 Range Mindex Query
ユーザー nagissnagiss
提出日時 2019-09-07 00:16:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 368 ms / 2,000 ms
コード長 1,828 bytes
コンパイル時間 199 ms
コンパイル使用メモリ 82,192 KB
実行使用メモリ 100,428 KB
最終ジャッジ日時 2024-06-24 22:40:48
合計ジャッジ時間 4,553 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,636 KB
testcase_01 AC 65 ms
70,544 KB
testcase_02 AC 73 ms
74,404 KB
testcase_03 AC 44 ms
61,016 KB
testcase_04 AC 53 ms
65,688 KB
testcase_05 AC 44 ms
60,740 KB
testcase_06 AC 60 ms
68,684 KB
testcase_07 AC 62 ms
70,292 KB
testcase_08 AC 53 ms
65,292 KB
testcase_09 AC 54 ms
64,340 KB
testcase_10 AC 71 ms
73,292 KB
testcase_11 AC 365 ms
95,116 KB
testcase_12 AC 318 ms
88,848 KB
testcase_13 AC 305 ms
100,428 KB
testcase_14 AC 309 ms
97,648 KB
testcase_15 AC 368 ms
100,424 KB
testcase_16 AC 322 ms
100,264 KB
testcase_17 AC 335 ms
100,352 KB
testcase_18 AC 331 ms
100,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class SegmentTree(object):
    __slots__ = ["elem_size", "tree", "default", "op"]
    def __init__(self, a, default, op):
        from math import ceil, log
        real_size = len(a)
        self.elem_size = elem_size = 1 << ceil(log(real_size, 2))
        self.tree = tree = [default] * (elem_size * 2)
        tree[elem_size:elem_size + real_size] = a
        self.default = default
        self.op = op
        for i in range(elem_size - 1, 0, -1):
            tree[i] = op(tree[i << 1], tree[(i << 1) + 1])

    def get_value(self, x: int, y: int) -> int:  # 半開区間
        l, r = x + self.elem_size, y + self.elem_size
        tree, result, op = self.tree, self.default, self.op
        while l < r:
            if l & 1:
                result = op(tree[l], result)
                l += 1
            if r & 1:
                r -= 1
                result = op(tree[r], result)
            l, r = l >> 1, r >> 1
        return result

    def set_value(self, i:int, value) -> None:
        k = self.elem_size + i
        self.tree[k] = value
        self.update(k)

    def update(self, i:int) -> None:
        op, tree = self.op, self.tree
        while i > 1:
            i >>= 1
            tree[i] = op(tree[i << 1], tree[(i << 1) + 1])

N, Q = map(int, input().split())
A = list(map(int, input().split()))
seg = SegmentTree(list(enumerate(A)),
                  (-1, float("inf")),
                  lambda x, y: x if x[1]<y[1] else y)
V = seg.tree
siz = seg.elem_size
Ans = []
for i in range(Q):
    q, l, r = map(int, input().split())
    if q==1:
        l-=1
        r-=1
        (_, al), (_, ar) = V[l+siz], V[r+siz]
        seg.set_value(l, (l, ar))
        seg.set_value(r, (r, al))
    else:
        l-=1
        ami, mi = seg.get_value(l, r)
        Ans.append(ami+1)
print("\n".join(map(str, Ans)))
0