結果
問題 | No.875 Range Mindex Query |
ユーザー | tcltk |
提出日時 | 2021-09-04 03:49:57 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 403 ms / 2,000 ms |
コード長 | 1,794 bytes |
コンパイル時間 | 140 ms |
コンパイル使用メモリ | 82,368 KB |
実行使用メモリ | 113,292 KB |
最終ジャッジ日時 | 2024-12-16 04:00:18 |
合計ジャッジ時間 | 6,703 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 118 ms
86,576 KB |
testcase_01 | AC | 138 ms
89,092 KB |
testcase_02 | AC | 144 ms
89,068 KB |
testcase_03 | AC | 126 ms
87,196 KB |
testcase_04 | AC | 127 ms
88,984 KB |
testcase_05 | AC | 120 ms
86,596 KB |
testcase_06 | AC | 136 ms
89,080 KB |
testcase_07 | AC | 133 ms
88,924 KB |
testcase_08 | AC | 129 ms
89,484 KB |
testcase_09 | AC | 134 ms
89,124 KB |
testcase_10 | AC | 142 ms
89,260 KB |
testcase_11 | AC | 333 ms
109,412 KB |
testcase_12 | AC | 403 ms
102,260 KB |
testcase_13 | AC | 321 ms
113,188 KB |
testcase_14 | AC | 320 ms
111,528 KB |
testcase_15 | AC | 339 ms
113,172 KB |
testcase_16 | AC | 329 ms
113,292 KB |
testcase_17 | AC | 347 ms
111,744 KB |
testcase_18 | AC | 356 ms
111,312 KB |
ソースコード
#!/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)