結果
問題 | No.875 Range Mindex Query |
ユーザー | convexineq |
提出日時 | 2019-09-06 22:05:33 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,686 bytes |
コンパイル時間 | 160 ms |
コンパイル使用メモリ | 81,920 KB |
実行使用メモリ | 92,288 KB |
最終ジャッジ日時 | 2024-06-24 17:57:58 |
合計ジャッジ時間 | 4,458 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 34 ms
52,096 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 | AC | 294 ms
90,616 KB |
testcase_17 | WA | - |
testcase_18 | AC | 303 ms
91,264 KB |
ソースコード
# coding: utf-8 # Your code here! """ セグメント木(一般化) """ class segment_tree: """ N: 処理する区間の長さ """ def __init__(self, N): #演算子および単位元を定義する。 # max, min, __add__,ラムダ式,... self.op = min self.UNIT = (1<<32)-1 self.N0 = 2**(N-1).bit_length() self.tree = [self.UNIT]*(2*self.N0) # a_k の値を x に更新 def update(self, k,x): k += self.N0-1 self.tree[k] = x while k >= 0: k = (k - 1) // 2 self.tree[k] = self.op(self.tree[2*k+1], self.tree[2*k+2]) # 区間[l,r]をopでまとめる def query(self, l,r): L = l + self.N0; R = r + self.N0 + 1 s = self.UNIT while L < R: if R & 1: R -= 1 s = self.op(s, self.tree[R-1]) if L & 1: s = self.op(s, self.tree[L-1]) L += 1 L >>= 1; R >>= 1 return s import sys sys.setrecursionlimit(10**6) readline = sys.stdin.readline n,q = [int(i) for i in readline().split()] a = [int(i)-1 for i in readline().split()] ilr = [[int(i) for i in readline().split()] for i in range(q)] seg = segment_tree(n) ra = [0]*(n) for i,ai in enumerate(a): seg.update(i,ai) ra[ai] = i for i,l,r in ilr: l -= 1 r -= 1 if i == 1: al = seg.query(l,l) ar = seg.query(r,r) seg.update(l,ar) seg.update(i,al) # print(al,ar,"al,ar") ra[al],ra[ar] = ra[ar],ra[al] # print(ra) else: m = seg.query(l,r) print(ra[m]+1)