結果

問題 No.875 Range Mindex Query
ユーザー tcltktcltk
提出日時 2021-09-04 03:54:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 507 ms / 2,000 ms
コード長 1,756 bytes
コンパイル時間 435 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 121,496 KB
最終ジャッジ日時 2024-05-09 14:15:57
合計ジャッジ時間 7,599 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 144 ms
86,656 KB
testcase_01 AC 168 ms
89,216 KB
testcase_02 AC 179 ms
89,216 KB
testcase_03 AC 150 ms
87,168 KB
testcase_04 AC 161 ms
88,832 KB
testcase_05 AC 147 ms
86,528 KB
testcase_06 AC 168 ms
89,344 KB
testcase_07 AC 171 ms
88,832 KB
testcase_08 AC 163 ms
89,216 KB
testcase_09 AC 165 ms
89,216 KB
testcase_10 AC 176 ms
89,088 KB
testcase_11 AC 507 ms
115,412 KB
testcase_12 AC 458 ms
105,600 KB
testcase_13 AC 454 ms
121,372 KB
testcase_14 AC 451 ms
118,264 KB
testcase_15 AC 507 ms
121,256 KB
testcase_16 AC 466 ms
121,496 KB
testcase_17 AC 487 ms
119,808 KB
testcase_18 AC 455 ms
119,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
# from typing import *

import sys
import io
import math
import collections
import decimal
import itertools
import bisect
import heapq


def input():
    return sys.stdin.readline()[:-1]


# sys.setrecursionlimit(1000000)

# _INPUT = """3 3
# 2 1 3
# 2 1 3
# 1 2 3
# 2 1 3
# """
# sys.stdin = io.StringIO(_INPUT)

INF = 10**10


class SegTree_Update_QRMin:
    def __init__(self, a) -> None:
        n = len(a)
        self.N0 = 1 << (n-1).bit_length()
        self.data = ([(INF, 0)] * self.N0) + a + ([(INF, 0)] * (self.N0-n))
        for i in reversed(range(1, self.N0)):
            self.data[i] = min(self.data[i*2], self.data[i*2+1])
    
    def update(self, i, x):
        i += self.N0
        self.data[i] = x
        while i > 0:
            i >>= 1
            self.data[i] = min(self.data[i*2], self.data[i*2+1])
    def query_rmin(self, l, r):
        l += self.N0
        r += self.N0
        s = (INF, 0)
        while l < r:
            if l & 1:
                s = min(s, self.data[l])
                l += 1
            if r & 1:
                s = min(s, self.data[r-1])
                r -= 1
            l >>= 1
            r >>= 1
        return s

    def get_value(self, i):
        return self.data[i+self.N0]


N, Q = map(int, input().split())
A = list(map(lambda x: int(x)-1, input().split()))

seg_tree = SegTree_Update_QRMin([(a, i) for i, a in enumerate(A)])

for _ in range(Q):
    i, l, r = map(int, input().split())
    l -= 1
    r -= 1
    if i == 1:
        v_l = seg_tree.get_value(l)
        v_r = seg_tree.get_value(r)
        seg_tree.update(l, (v_r[0], l))
        seg_tree.update(r, (v_l[0], r))

    else:
        m = seg_tree.query_rmin(l, r+1)
        ans = m[1] + 1
        print(ans)
0