結果
問題 | No.875 Range Mindex Query |
ユーザー | mlihua09 |
提出日時 | 2020-08-31 17:13:01 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,647 bytes |
コンパイル時間 | 341 ms |
コンパイル使用メモリ | 81,976 KB |
実行使用メモリ | 93,180 KB |
最終ジャッジ日時 | 2024-11-16 05:50:55 |
合計ジャッジ時間 | 4,932 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 32 ms
51,840 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
ソースコード
class SegmentTree: def __init__(self, N, A): self.n = 2 ** (N.bit_length()) self.A = A + [N + 1] self.Tree = [N] * (self.n * 2 - 1) for i in range(N): self.Tree[self.n + i - 1] = i self.update(i) def update(self, i): i = (self.n + i) // 2 - 1 while i >= 0: if self.A[self.Tree[i * 2 + 1]] < self.A[self.Tree[i * 2 + 2]]: self.Tree[i] = self.Tree[i * 2 + 1] else: self.Tree[i] = self.Tree[i * 2 + 2] i -= 1 i //= 2 def query(self, l, r): l -= 1 i = l + self.n - 1 ans = self.Tree[i] x = 1 while l < r: if l + x <= r and i % 2: i = (i - 1) // 2 x *= 2 else: l = l + x // 2 if self.A[ans] > self.A[self.Tree[i]]: ans = self.Tree[i] i = l + self.n - 1 x = i return ans + 1 N, Q = map(int, input().split()) A = list(map(int, input().split())) X = SegmentTree(N, A) for i in range(Q): q, l, r = map(int, input().split()) if q == 1: X.A[l - 1], X.A[r - 1] = X.A[r - 1], X.A[l - 1] X.update(l - 1) X.update(r - 1) else: print(X.query(l, r))