結果
問題 | No.649 ここでちょっとQK! |
ユーザー | LyricalMaestro |
提出日時 | 2024-09-15 00:12:29 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 532 ms / 3,000 ms |
コード長 | 1,985 bytes |
コンパイル時間 | 402 ms |
コンパイル使用メモリ | 82,244 KB |
実行使用メモリ | 173,140 KB |
最終ジャッジ日時 | 2024-09-15 00:12:41 |
合計ジャッジ時間 | 11,298 ms |
ジャッジサーバーID (参考情報) |
judge6 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 38 ms
53,844 KB |
testcase_01 | AC | 38 ms
52,660 KB |
testcase_02 | AC | 39 ms
54,436 KB |
testcase_03 | AC | 232 ms
95,696 KB |
testcase_04 | AC | 355 ms
173,140 KB |
testcase_05 | AC | 345 ms
172,848 KB |
testcase_06 | AC | 314 ms
102,524 KB |
testcase_07 | AC | 38 ms
52,008 KB |
testcase_08 | AC | 39 ms
53,944 KB |
testcase_09 | AC | 38 ms
53,148 KB |
testcase_10 | AC | 38 ms
53,688 KB |
testcase_11 | AC | 39 ms
53,008 KB |
testcase_12 | AC | 324 ms
116,612 KB |
testcase_13 | AC | 293 ms
116,620 KB |
testcase_14 | AC | 289 ms
116,756 KB |
testcase_15 | AC | 296 ms
116,424 KB |
testcase_16 | AC | 319 ms
116,708 KB |
testcase_17 | AC | 312 ms
108,916 KB |
testcase_18 | AC | 334 ms
127,692 KB |
testcase_19 | AC | 368 ms
132,776 KB |
testcase_20 | AC | 385 ms
135,232 KB |
testcase_21 | AC | 402 ms
140,876 KB |
testcase_22 | AC | 429 ms
142,212 KB |
testcase_23 | AC | 454 ms
150,240 KB |
testcase_24 | AC | 469 ms
130,812 KB |
testcase_25 | AC | 522 ms
160,300 KB |
testcase_26 | AC | 532 ms
165,420 KB |
testcase_27 | AC | 63 ms
67,044 KB |
testcase_28 | AC | 62 ms
68,220 KB |
testcase_29 | AC | 59 ms
67,300 KB |
testcase_30 | AC | 257 ms
107,156 KB |
testcase_31 | AC | 258 ms
107,360 KB |
testcase_32 | AC | 39 ms
52,696 KB |
testcase_33 | AC | 39 ms
53,424 KB |
testcase_34 | AC | 38 ms
52,280 KB |
testcase_35 | AC | 39 ms
53,260 KB |
ソースコード
## https://yukicoder.me/problems/no/649 class BinaryIndexTree: """ フェニック木(BinaryIndexTree)の基本的な機能を実装したクラス """ def __init__(self, size): self.size = size self.array = [0] * (size + 1) def add(self, x, a): index = x while index <= self.size: self.array[index] += a index += index & (-index) def sum(self, x): index = x ans = 0 while index > 0: ans += self.array[index] index -= index & (-index) return ans def least_upper_bound(self, value): if self.sum(self.size) < value: return -1 elif value <= 0: return 0 m = 1 while m < self.size: m *= 2 k = 0 k_sum = 0 while m > 0: k0 = k + m if k0 < self.size: if k_sum + self.array[k0] < value: k_sum += self.array[k0] k += m m //= 2 if k < self.size: return k + 1 else: return -1 def main(): Q, K = map(int, input().split()) queries = [] for _ in range(Q): values = tuple(map(int, input().split())) queries.append(values) # 座標圧縮 v_set = set() for values in queries: if values[0] == 1: v_set.add(values[1]) v_list = list(v_set) v_list.sort() v_map = {} for i, v in enumerate(v_list): v_map[v] = i + 1 v_max = len(v_list) bit = BinaryIndexTree(v_max) for values in queries: if values[0] == 1: _, v = values bit.add(v_map[v], 1) else: if bit.sum(bit.size) < K: print(-1) else: v = bit.least_upper_bound(K) print(v_list[v - 1]) bit.add(v, - 1) if __name__ == "__main__": main()