結果

問題 No.875 Range Mindex Query
ユーザー tcltktcltk
提出日時 2021-09-04 03:49:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 355 ms / 2,000 ms
コード長 1,794 bytes
コンパイル時間 335 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 113,436 KB
最終ジャッジ日時 2024-05-09 14:08:37
合計ジャッジ時間 6,432 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
86,912 KB
testcase_01 AC 143 ms
89,180 KB
testcase_02 AC 144 ms
89,300 KB
testcase_03 AC 125 ms
87,040 KB
testcase_04 AC 133 ms
89,132 KB
testcase_05 AC 123 ms
86,480 KB
testcase_06 AC 137 ms
89,088 KB
testcase_07 AC 144 ms
89,088 KB
testcase_08 AC 136 ms
89,216 KB
testcase_09 AC 137 ms
89,088 KB
testcase_10 AC 143 ms
88,860 KB
testcase_11 AC 354 ms
109,648 KB
testcase_12 AC 336 ms
102,384 KB
testcase_13 AC 325 ms
113,300 KB
testcase_14 AC 321 ms
111,864 KB
testcase_15 AC 355 ms
113,436 KB
testcase_16 AC 334 ms
113,188 KB
testcase_17 AC 352 ms
111,744 KB
testcase_18 AC 339 ms
111,696 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 = ([2**31-1] * self.N0) + a + ([2**31-1] * (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 = 2**31-1
        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)
T = [0] * N
for i, a in enumerate(A):
    T[a] = i

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)
        seg_tree.update(r, v_l)
        T[v_l] = r
        T[v_r] = l

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