結果

問題 No.649 ここでちょっとQK!
ユーザー tktk_snsntktk_snsn
提出日時 2020-07-15 20:22:40
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 612 ms / 3,000 ms
コード長 538 bytes
コンパイル時間 258 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 18,432 KB
最終ジャッジ日時 2024-11-22 10:24:53
合計ジャッジ時間 12,077 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 32
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import heapq
input = sys.stdin.readline

Q, K = map(int, input().split())
low = []
high = []
for _ in range(Q):
    query = list(map(int, input().split()))
    if len(query) == 2:
        heapq.heappush(low, -query[1])
        if len(low) > K:
            x = -heapq.heappop(low)
            heapq.heappush(high, x)
    else:
        if len(low) < K:
            print(-1)
        else:
            print(-heapq.heappop(low))
            if high:
                x = heapq.heappop(high)
                heapq.heappush(low, -x)
0