結果
問題 | No.878 Range High-Element Query |
ユーザー | stng |
提出日時 | 2022-08-21 09:23:33 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 848 ms / 2,000 ms |
コード長 | 1,527 bytes |
コンパイル時間 | 245 ms |
コンパイル使用メモリ | 82,292 KB |
実行使用メモリ | 99,252 KB |
最終ジャッジ日時 | 2024-10-10 02:17:07 |
合計ジャッジ時間 | 8,506 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 44 ms
52,864 KB |
testcase_01 | AC | 76 ms
72,192 KB |
testcase_02 | AC | 100 ms
76,160 KB |
testcase_03 | AC | 84 ms
72,064 KB |
testcase_04 | AC | 78 ms
70,784 KB |
testcase_05 | AC | 80 ms
72,960 KB |
testcase_06 | AC | 58 ms
62,592 KB |
testcase_07 | AC | 61 ms
63,232 KB |
testcase_08 | AC | 92 ms
75,648 KB |
testcase_09 | AC | 90 ms
76,032 KB |
testcase_10 | AC | 60 ms
64,640 KB |
testcase_11 | AC | 712 ms
97,992 KB |
testcase_12 | AC | 629 ms
90,172 KB |
testcase_13 | AC | 647 ms
94,012 KB |
testcase_14 | AC | 523 ms
89,268 KB |
testcase_15 | AC | 579 ms
91,644 KB |
testcase_16 | AC | 848 ms
98,288 KB |
testcase_17 | AC | 792 ms
99,252 KB |
testcase_18 | AC | 814 ms
98,616 KB |
ソースコード
import heapq class Bit: def __init__(self, n): self.size = n self.tree = [0] * (n + 1) def sum(self, i): s = 0 while i > 0: s += self.tree[i] i -= i & -i return s def add(self, i, x): while i <= self.size: self.tree[i] += x i += i & -i n,q = map(int,input().split()) a = [int(i) for i in input().split()] qry = [[int(i) for i in input().split()]+[j] for j in range(q)] ru = Bit(n+1) #print(qry) qry.sort(key=lambda x:-x[1]) _,l,r,IDX = qry[0] l -= 1 r -= 1 hp = [] heapq.heapify(hp) ans = [0]*(q) for i in range(n-1,l-1,-1): ru.add(i+1,1) val = a[i] while len(hp): tmp,idx = heapq.heappop(hp) if val > tmp: ru.add(idx,-1) else: heapq.heappush(hp,[tmp,idx]) break heapq.heappush(hp,[val,i+1]) ans[IDX] = ru.sum(r+1)-ru.sum(l) #print(ans) #exit() L = l for i in range(1,q): _,l,r,IDX = qry[i] #print(qry[i],"i") l -= 1 r -= 1 if L > l: for j in range(L-1,l-1,-1): ru.add(j+1,1) val = a[j] while len(hp): tmp,idx = heapq.heappop(hp) if val > tmp: ru.add(idx,-1) else: heapq.heappush(hp,[tmp,idx]) break heapq.heappush(hp,[val,j+1]) L = l #print(ru.sum(r+1),i,"ii") ans[IDX] = ru.sum(r+1)-ru.sum(l) #print(idx,"idx") print(*ans,sep="\n")