結果
問題 | No.875 Range Mindex Query |
ユーザー | terasa |
提出日時 | 2022-06-29 13:52:08 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 300 ms / 2,000 ms |
コード長 | 2,323 bytes |
コンパイル時間 | 835 ms |
コンパイル使用メモリ | 81,560 KB |
実行使用メモリ | 106,956 KB |
最終ジャッジ日時 | 2024-11-22 15:50:05 |
合計ジャッジ時間 | 5,986 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 51 ms
54,784 KB |
testcase_01 | AC | 70 ms
65,792 KB |
testcase_02 | AC | 81 ms
68,480 KB |
testcase_03 | AC | 58 ms
61,568 KB |
testcase_04 | AC | 65 ms
64,000 KB |
testcase_05 | AC | 56 ms
56,064 KB |
testcase_06 | AC | 70 ms
65,280 KB |
testcase_07 | AC | 80 ms
67,584 KB |
testcase_08 | AC | 71 ms
63,616 KB |
testcase_09 | AC | 73 ms
63,872 KB |
testcase_10 | AC | 80 ms
69,632 KB |
testcase_11 | AC | 294 ms
100,584 KB |
testcase_12 | AC | 257 ms
92,544 KB |
testcase_13 | AC | 248 ms
106,112 KB |
testcase_14 | AC | 246 ms
103,808 KB |
testcase_15 | AC | 290 ms
106,752 KB |
testcase_16 | AC | 292 ms
106,368 KB |
testcase_17 | AC | 300 ms
106,940 KB |
testcase_18 | AC | 298 ms
106,956 KB |
ソースコード
import sys import pypyjit import itertools import heapq import math from collections import deque, defaultdict import bisect input = sys.stdin.readline sys.setrecursionlimit(10 ** 6) pypyjit.set_param('max_unroll_recursion=-1') def index_lt(a, x): 'return largest index s.t. A[i] < x or -1 if it does not exist' return bisect.bisect_left(a, x) - 1 def index_le(a, x): 'return largest index s.t. A[i] <= x or -1 if it does not exist' return bisect.bisect_right(a, x) - 1 def index_gt(a, x): 'return smallest index s.t. A[i] > x or len(a) if it does not exist' return bisect.bisect_right(a, x) def index_ge(a, x): 'return smallest index s.t. A[i] >= x or len(a) if it does not exist' return bisect.bisect_left(a, x) class SegTree: def __init__(self, N, func, e): self.N = N self.func = func self.X = [e] * (N << 1) self.e = e def build(self, seq): for i in range(self.N): self.X[self.N + i] = seq[i] for i in range(self.N)[::-1]: self.X[i] = self.func(self.X[i << 1], self.X[i << 1 | 1]) def add(self, i, x): i += self.N self.X[i] += x while i > 1: i >>= 1 self.X[i] = self.func(self.X[i << 1], self.X[i << 1 | 1]) def update(self, i, x): i += self.N self.X[i] = x while i > 1: i >>= 1 self.X[i] = self.func(self.X[i << 1], self.X[i << 1 | 1]) def query(self, L, R): L += self.N R += self.N vL = self.e vR = self.e while L < R: if L & 1: vL = self.func(vL, self.X[L]) L += 1 if R & 1: R -= 1 vR = self.func(self.X[R], vR) L >>= 1 R >>= 1 return self.func(vL, vR) N, Q = map(int, input().split()) A = list(map(int, input().split())) idx = {} for i in range(N): idx[A[i]] = i + 1 st = SegTree(N, min, N + 1) st.build(A) for _ in range(Q): t, l, r = map(int, input().split()) l -= 1 r -= 1 if t == 1: lv = st.X[N + l] rv = st.X[N + r] st.update(l, rv) st.update(r, lv) idx[lv], idx[rv] = idx[rv], idx[lv] else: mv = st.query(l, r + 1) print(idx[mv])