結果

問題 No.649 ここでちょっとQK!
ユーザー rlangevinrlangevin
提出日時 2023-05-25 12:16:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 331 ms / 3,000 ms
コード長 748 bytes
コンパイル時間 163 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 87,808 KB
最終ジャッジ日時 2024-12-24 05:56:21
合計ジャッジ時間 8,607 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,736 KB
testcase_01 AC 45 ms
52,096 KB
testcase_02 AC 45 ms
52,224 KB
testcase_03 AC 128 ms
76,440 KB
testcase_04 AC 246 ms
86,416 KB
testcase_05 AC 241 ms
87,808 KB
testcase_06 AC 194 ms
84,064 KB
testcase_07 AC 40 ms
52,352 KB
testcase_08 AC 40 ms
52,480 KB
testcase_09 AC 39 ms
52,480 KB
testcase_10 AC 40 ms
52,480 KB
testcase_11 AC 42 ms
52,480 KB
testcase_12 AC 184 ms
81,400 KB
testcase_13 AC 180 ms
81,756 KB
testcase_14 AC 183 ms
81,664 KB
testcase_15 AC 235 ms
82,308 KB
testcase_16 AC 201 ms
79,872 KB
testcase_17 AC 240 ms
81,152 KB
testcase_18 AC 247 ms
81,408 KB
testcase_19 AC 257 ms
83,456 KB
testcase_20 AC 265 ms
82,796 KB
testcase_21 AC 278 ms
84,352 KB
testcase_22 AC 294 ms
84,224 KB
testcase_23 AC 294 ms
85,284 KB
testcase_24 AC 304 ms
86,004 KB
testcase_25 AC 316 ms
86,136 KB
testcase_26 AC 331 ms
86,144 KB
testcase_27 AC 62 ms
63,872 KB
testcase_28 AC 60 ms
64,128 KB
testcase_29 AC 65 ms
65,792 KB
testcase_30 AC 219 ms
82,384 KB
testcase_31 AC 229 ms
80,384 KB
testcase_32 AC 43 ms
52,096 KB
testcase_33 AC 47 ms
52,352 KB
testcase_34 AC 42 ms
52,224 KB
testcase_35 AC 43 ms
52,352 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