結果

問題 No.649 ここでちょっとQK!
ユーザー rlangevinrlangevin
提出日時 2023-05-25 12:16:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 319 ms / 3,000 ms
コード長 748 bytes
コンパイル時間 171 ms
コンパイル使用メモリ 82,284 KB
実行使用メモリ 88,148 KB
最終ジャッジ日時 2024-06-06 14:00:15
合計ジャッジ時間 7,816 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,220 KB
testcase_01 AC 40 ms
52,864 KB
testcase_02 AC 41 ms
52,224 KB
testcase_03 AC 136 ms
76,508 KB
testcase_04 AC 237 ms
86,412 KB
testcase_05 AC 227 ms
88,148 KB
testcase_06 AC 187 ms
84,200 KB
testcase_07 AC 38 ms
52,736 KB
testcase_08 AC 39 ms
52,608 KB
testcase_09 AC 39 ms
52,480 KB
testcase_10 AC 39 ms
52,608 KB
testcase_11 AC 39 ms
52,736 KB
testcase_12 AC 177 ms
81,220 KB
testcase_13 AC 172 ms
82,064 KB
testcase_14 AC 170 ms
81,408 KB
testcase_15 AC 231 ms
82,188 KB
testcase_16 AC 187 ms
79,904 KB
testcase_17 AC 224 ms
81,036 KB
testcase_18 AC 234 ms
81,536 KB
testcase_19 AC 247 ms
83,328 KB
testcase_20 AC 254 ms
83,184 KB
testcase_21 AC 265 ms
84,008 KB
testcase_22 AC 268 ms
83,964 KB
testcase_23 AC 282 ms
85,412 KB
testcase_24 AC 293 ms
86,012 KB
testcase_25 AC 293 ms
85,892 KB
testcase_26 AC 319 ms
85,892 KB
testcase_27 AC 52 ms
63,980 KB
testcase_28 AC 53 ms
64,128 KB
testcase_29 AC 57 ms
66,432 KB
testcase_30 AC 213 ms
83,036 KB
testcase_31 AC 213 ms
80,816 KB
testcase_32 AC 37 ms
52,480 KB
testcase_33 AC 37 ms
52,480 KB
testcase_34 AC 36 ms
52,480 KB
testcase_35 AC 39 ms
52,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from heapq import *

Q, K = map(int, input().split())
H1, H2 = [], []
cnt = 0
for _ in range(Q):
    query = list(map(int, input().split()))
    if query[0] == 1:
        v = query[1]
        if cnt < K:
            heappush(H1, -v)
            cnt += 1
        else:
            maxv = -heappop(H1)
            if v <= maxv:
                heappush(H1, -v)
                heappush(H2, maxv)
            else:
                heappush(H1, -maxv)
                heappush(H2, v)
    else:
        if cnt < K:
            print(-1)
        else:
            print(-heappop(H1))
            if H2:
                minv = heappop(H2)
                heappush(H1, -minv)
            else:
                cnt -= 1
0