結果
問題 | No.649 ここでちょっとQK! |
ユーザー | はむ吉🐹 |
提出日時 | 2018-02-11 17:19:36 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
AC
|
実行時間 | 1,133 ms / 3,000 ms |
コード長 | 1,401 bytes |
コンパイル時間 | 236 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 20,096 KB |
最終ジャッジ日時 | 2024-11-17 06:59:33 |
合計ジャッジ時間 | 16,938 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 32 ms
10,624 KB |
testcase_01 | AC | 32 ms
10,880 KB |
testcase_02 | AC | 33 ms
10,752 KB |
testcase_03 | AC | 1,133 ms
10,752 KB |
testcase_04 | AC | 780 ms
18,688 KB |
testcase_05 | AC | 656 ms
18,688 KB |
testcase_06 | AC | 638 ms
20,096 KB |
testcase_07 | AC | 32 ms
10,752 KB |
testcase_08 | AC | 32 ms
10,880 KB |
testcase_09 | AC | 32 ms
10,624 KB |
testcase_10 | AC | 33 ms
10,624 KB |
testcase_11 | AC | 33 ms
10,624 KB |
testcase_12 | AC | 387 ms
13,952 KB |
testcase_13 | AC | 386 ms
13,952 KB |
testcase_14 | AC | 397 ms
14,080 KB |
testcase_15 | AC | 412 ms
14,080 KB |
testcase_16 | AC | 384 ms
14,336 KB |
testcase_17 | AC | 474 ms
14,592 KB |
testcase_18 | AC | 508 ms
14,720 KB |
testcase_19 | AC | 560 ms
15,232 KB |
testcase_20 | AC | 604 ms
15,488 KB |
testcase_21 | AC | 660 ms
15,872 KB |
testcase_22 | AC | 700 ms
16,128 KB |
testcase_23 | AC | 739 ms
16,512 KB |
testcase_24 | AC | 787 ms
16,896 KB |
testcase_25 | AC | 828 ms
17,152 KB |
testcase_26 | AC | 866 ms
17,408 KB |
testcase_27 | AC | 36 ms
10,880 KB |
testcase_28 | AC | 36 ms
11,008 KB |
testcase_29 | AC | 36 ms
10,880 KB |
testcase_30 | AC | 387 ms
13,952 KB |
testcase_31 | AC | 412 ms
14,336 KB |
testcase_32 | AC | 33 ms
10,624 KB |
testcase_33 | AC | 32 ms
10,752 KB |
testcase_34 | AC | 32 ms
10,624 KB |
testcase_35 | AC | 32 ms
10,880 KB |
ソースコード
#!/usr/bin/env python3 import heapq INVALID = -1 class Solver(object): def __init__(self, k): self.k = k # 最小からK個までの要素を格納する最大ヒープ # 実装上は最小ヒープ+負数で代用 self.max_heap = [] # 残りの要素を格納する最小ヒープ self.min_heap = [] def parse_query1(self, v): if len(self.max_heap) < self.k: heapq.heappush(self.max_heap, -v) else: m1 = -self.max_heap[0] if m1 <= v: heapq.heappush(self.min_heap, v) else: _ = heapq.heappop(self.max_heap) heapq.heappush(self.min_heap, m1) heapq.heappush(self.max_heap, -v) def parse_query2(self): if len(self.max_heap) < self.k: return INVALID else: res = -heapq.heappop(self.max_heap) if self.min_heap: heapq.heappush(self.max_heap, -heapq.heappop(self.min_heap)) return res def main(): q, k = (int(z) for z in input().split()) solver = Solver(k) for _ in range(q): args = [int(z) for z in input().split()] if args[0] == 1: solver.parse_query1(args[1]) else: print(solver.parse_query2()) if __name__ == '__main__': main()