結果
問題 | No.649 ここでちょっとQK! |
ユーザー | toyuzuko |
提出日時 | 2020-03-20 17:22:42 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,806 bytes |
コンパイル時間 | 442 ms |
コンパイル使用メモリ | 82,560 KB |
実行使用メモリ | 163,292 KB |
最終ジャッジ日時 | 2024-05-08 08:24:17 |
合計ジャッジ時間 | 7,780 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 39 ms
52,352 KB |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | AC | 204 ms
94,652 KB |
testcase_04 | AC | 295 ms
153,548 KB |
testcase_05 | AC | 297 ms
153,208 KB |
testcase_06 | AC | 263 ms
110,136 KB |
testcase_07 | AC | 39 ms
52,608 KB |
testcase_08 | AC | 39 ms
52,736 KB |
testcase_09 | AC | 39 ms
52,480 KB |
testcase_10 | AC | 40 ms
52,480 KB |
testcase_11 | AC | 39 ms
52,480 KB |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | AC | 51 ms
62,464 KB |
testcase_28 | AC | 51 ms
62,464 KB |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | AC | 41 ms
52,352 KB |
testcase_33 | AC | 39 ms
52,224 KB |
testcase_34 | AC | 39 ms
52,608 KB |
testcase_35 | AC | 39 ms
52,480 KB |
ソースコード
class Set(): #BinaryIndexedTree def __init__(self, valuelist): self.n = len(valuelist) self.value = sorted(valuelist) self.comp = {v : k for k, v in enumerate(self.value, 1)} self.bit = BinaryIndexedTree(self.n) def insert(self, x, k=1): self.bit.add(self.comp[x], k) def delete(self, x, k=1): self.bit.add(self.comp[x], -k) def count(self, x): return self.bit.get(self.comp[x]) def get(self, k): return self.value[self.bit.bisect_left(k)-1] class BinaryIndexedTree(): #1-indexed def __init__(self, n): self.n = n self.tree = [0 for _ in range(n + 1)] def sum(self, index): res = 0 while index: res += self.tree[index] index -= index & -index return res def get(self, index): return self.sum(index) - self.sum(index - 1) def add(self, index, x): while index <= self.n: self.tree[index] += x index += index & -index def bisect_left(self, x): if x <= 0: return 0 res, tmp = 0, 2**((self.n).bit_length() - 1) while tmp: if res + tmp <= self.n and self.tree[res + tmp] < x: x -= self.tree[res + tmp] res += tmp tmp >>= 1 return res + 1 import sys input = sys.stdin.readline INF = 10**18 + 1 Q, K = map(int, input().split()) query = [] value = [INF] for _ in range(Q): q = tuple(map(int, input().split())) if q[0] == 1: value.append(q[1]) query.append(q) S = Set(set(value)) S.insert(INF) for q in query: if q[0] == 1: S.insert(q[1]) else: v = S.get(K) if v == INF: print(-1) else: print(v) S.delete(v)