結果
問題 | No.875 Range Mindex Query |
ユーザー | nephrologist |
提出日時 | 2020-05-06 21:32:22 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 548 ms / 2,000 ms |
コード長 | 2,282 bytes |
コンパイル時間 | 166 ms |
コンパイル使用メモリ | 82,424 KB |
実行使用メモリ | 94,264 KB |
最終ジャッジ日時 | 2024-07-03 09:09:13 |
合計ジャッジ時間 | 5,835 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 36 ms
53,744 KB |
testcase_01 | AC | 63 ms
70,300 KB |
testcase_02 | AC | 84 ms
76,624 KB |
testcase_03 | AC | 44 ms
62,196 KB |
testcase_04 | AC | 55 ms
66,920 KB |
testcase_05 | AC | 41 ms
61,008 KB |
testcase_06 | AC | 63 ms
70,476 KB |
testcase_07 | AC | 68 ms
73,576 KB |
testcase_08 | AC | 52 ms
66,864 KB |
testcase_09 | AC | 54 ms
66,652 KB |
testcase_10 | AC | 76 ms
76,268 KB |
testcase_11 | AC | 547 ms
90,124 KB |
testcase_12 | AC | 483 ms
86,120 KB |
testcase_13 | AC | 442 ms
93,592 KB |
testcase_14 | AC | 452 ms
92,252 KB |
testcase_15 | AC | 526 ms
94,200 KB |
testcase_16 | AC | 521 ms
93,516 KB |
testcase_17 | AC | 548 ms
94,264 KB |
testcase_18 | AC | 534 ms
93,748 KB |
ソースコード
n, q = map(int, input().split()) A = list(map(int, input().split())) infi = 10 ** 20 def func(pair1, pair2): idx1, val1 = pair1 idx2, val2 = pair2 if val1 < val2: res = pair1 else: res = pair2 return res class SegmentTree: # 1-index def __init__(self, A: list, ele, func): # Aは0-idx self.A = A self.ele = ele self.func = func self.n = len(self.A) self.num = 2 ** ((n - 1).bit_length()) self.SEG = [self.ele] * (2 * self.num) # self.LAZY=[ele]*(2*num) def search(self, idx): return self.SEG[idx + self.num] def initialize(self): for i in range(self.n): self.SEG[i + self.num] = (i + 1, self.A[i]) for i in range(self.num - 1, 0, -1): self.SEG[i] = self.func(self.SEG[2 * i], self.SEG[2 * i + 1]) def update(self, idx, val): # 0-idx idx += self.num self.SEG[idx] = val idx //= 2 while idx: self.SEG[idx] = self.func(self.SEG[2 * idx], self.SEG[2 * idx + 1]) idx //= 2 # def delay(self,): def query(self, left, right): # maspy式。開区間のママ処理する # left, rightで値を分けているのは交換法則不成立のときのため # 開区間→Rが奇数→右端が偶数→1ずらしてから計算 # 下から上への遷移は2で割る # juppy氏は閉区間に直していた resleft = self.ele resright = self.ele left += self.num right += self.num while right - left > 0: if left % 2 == 1: resleft = self.func(resleft, self.SEG[left]) left += 1 if right % 2 == 1: right -= 1 resright = self.func(resright, self.SEG[right]) left //= 2 right //= 2 return self.func(resleft, resright)[0] ST = SegmentTree(A, (-1, infi), func) ST.initialize() for _ in range(q): a, l, r = map(int, input().split()) if a == 1: lidx, lval = ST.search(l - 1) ridx, rval = ST.search(r - 1) ST.update(ridx - 1, (ridx, lval)) ST.update(lidx - 1, (lidx, rval)) else: print(ST.query(l - 1, r))