結果

問題 No.649 ここでちょっとQK!
ユーザー brthyyjpbrthyyjp
提出日時 2020-03-20 17:39:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 340 ms / 3,000 ms
コード長 803 bytes
コンパイル時間 312 ms
コンパイル使用メモリ 82,424 KB
実行使用メモリ 88,004 KB
最終ジャッジ日時 2024-12-14 11:35:12
合計ジャッジ時間 9,450 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,604 KB
testcase_01 AC 40 ms
53,656 KB
testcase_02 AC 38 ms
53,080 KB
testcase_03 AC 113 ms
76,380 KB
testcase_04 AC 231 ms
86,032 KB
testcase_05 AC 252 ms
88,004 KB
testcase_06 AC 200 ms
84,120 KB
testcase_07 AC 39 ms
53,336 KB
testcase_08 AC 38 ms
53,300 KB
testcase_09 AC 38 ms
53,376 KB
testcase_10 AC 39 ms
52,740 KB
testcase_11 AC 39 ms
53,496 KB
testcase_12 AC 195 ms
81,336 KB
testcase_13 AC 185 ms
82,052 KB
testcase_14 AC 188 ms
81,300 KB
testcase_15 AC 256 ms
82,360 KB
testcase_16 AC 203 ms
80,004 KB
testcase_17 AC 255 ms
82,040 KB
testcase_18 AC 256 ms
81,544 KB
testcase_19 AC 275 ms
83,164 KB
testcase_20 AC 278 ms
83,724 KB
testcase_21 AC 295 ms
84,208 KB
testcase_22 AC 304 ms
84,076 KB
testcase_23 AC 308 ms
85,296 KB
testcase_24 AC 318 ms
86,500 KB
testcase_25 AC 332 ms
85,804 KB
testcase_26 AC 340 ms
86,404 KB
testcase_27 AC 56 ms
64,584 KB
testcase_28 AC 56 ms
65,616 KB
testcase_29 AC 60 ms
66,544 KB
testcase_30 AC 229 ms
82,340 KB
testcase_31 AC 234 ms
80,492 KB
testcase_32 AC 41 ms
53,220 KB
testcase_33 AC 39 ms
53,948 KB
testcase_34 AC 39 ms
54,328 KB
testcase_35 AC 39 ms
52,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

q, k = map(int, input().split())

MIN = []
MAX = []
import heapq
heapq.heapify(MIN)
heapq.heapify(MAX)

for _ in range(q):
    query = list(map(int, input().split()))
    if len(query) == 1:
        if len(MIN) < k:
            print(-1)
        else:
            print((-1)*heapq.heappop(MIN))
            if len(MAX) > 0:
                v = heapq.heappop(MAX)
                heapq.heappush(MIN, (-1)*v)
    else:
        c, v = query
        if len(MIN) < k:
            heapq.heappush(MIN, (-1)*v)
        else:
            u = (-1)*heapq.heappop(MIN)
            if u <= v:
                heapq.heappush(MIN, (-1)*u)
                heapq.heappush(MAX, v)
            else:
                heapq.heappush(MIN, (-1)*v)
                heapq.heappush(MAX, u)
0