結果

問題 No.875 Range Mindex Query
ユーザー maspymaspy
提出日時 2019-09-06 23:25:55
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,691 ms / 2,000 ms
コード長 1,090 bytes
コンパイル時間 226 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 60,740 KB
最終ジャッジ日時 2024-06-24 21:23:12
合計ジャッジ時間 20,517 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 525 ms
44,392 KB
testcase_01 AC 531 ms
44,392 KB
testcase_02 AC 530 ms
44,264 KB
testcase_03 AC 523 ms
44,264 KB
testcase_04 AC 523 ms
44,132 KB
testcase_05 AC 529 ms
44,012 KB
testcase_06 AC 534 ms
44,012 KB
testcase_07 AC 531 ms
44,524 KB
testcase_08 AC 528 ms
44,276 KB
testcase_09 AC 530 ms
43,876 KB
testcase_10 AC 533 ms
44,268 KB
testcase_11 AC 1,577 ms
60,740 KB
testcase_12 AC 1,455 ms
58,344 KB
testcase_13 AC 1,238 ms
54,020 KB
testcase_14 AC 1,214 ms
54,212 KB
testcase_15 AC 1,497 ms
59,308 KB
testcase_16 AC 1,626 ms
59,540 KB
testcase_17 AC 1,665 ms
60,672 KB
testcase_18 AC 1,691 ms
60,364 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import numpy as np


N,Q = map(int,sys.stdin.readline().split())
INF = 10**6
size = 300
data = np.full(N+(-N)%size,INF,dtype=np.int32)
data[:N] = np.array(sys.stdin.readline().split(),dtype=np.int32)
query = [tuple(int(x)-1 for x in row.split()) for row in sys.stdin.readlines()]


x_to_i = [None] * (N+1)
for i,x in enumerate(data[:N]):
    x_to_i[x] = i

N += (-N)%size
Nbucket = N//size
bucket = np.array([data[i*size:(i+1)*size].min() for i in range(Nbucket)])


def RmQ(L,R):
    R += 1
    nL = L//size
    nR = R//size
    if nL == nR:
        return data[L:R].min()
    x = data[L:(nL+1)*size].min()
    if R%size != 0:
        x = min(x,data[nR*size:R].min())
    if nL+1 < nR:
        x = min(x,bucket[nL+1:nR].min())
    return x

for q,L,R in query:
    if q == 0:
        x,y = data[L],data[R]
        data[L] = y; data[R] = x
        iL = L//size; iR = R//size
        bucket[iL] = data[iL*size:iL*size+size].min()
        bucket[iR] = data[iR*size:iR*size+size].min()
        x_to_i[y] = L
        x_to_i[x] = R
    elif q == 1:
        print(x_to_i[RmQ(L,R)]+1)

0