結果

問題 No.649 ここでちょっとQK!
ユーザー brthyyjpbrthyyjp
提出日時 2020-03-20 17:39:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 353 ms / 3,000 ms
コード長 803 bytes
コンパイル時間 422 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 87,808 KB
最終ジャッジ日時 2024-05-08 08:49:20
合計ジャッジ時間 8,340 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,352 KB
testcase_01 AC 40 ms
52,352 KB
testcase_02 AC 40 ms
52,352 KB
testcase_03 AC 119 ms
76,288 KB
testcase_04 AC 242 ms
86,164 KB
testcase_05 AC 263 ms
87,808 KB
testcase_06 AC 207 ms
83,860 KB
testcase_07 AC 40 ms
52,096 KB
testcase_08 AC 41 ms
52,224 KB
testcase_09 AC 41 ms
52,608 KB
testcase_10 AC 42 ms
52,480 KB
testcase_11 AC 41 ms
52,352 KB
testcase_12 AC 208 ms
81,264 KB
testcase_13 AC 201 ms
81,496 KB
testcase_14 AC 194 ms
81,280 KB
testcase_15 AC 267 ms
82,228 KB
testcase_16 AC 213 ms
79,744 KB
testcase_17 AC 272 ms
81,444 KB
testcase_18 AC 274 ms
81,492 KB
testcase_19 AC 284 ms
83,248 KB
testcase_20 AC 292 ms
83,212 KB
testcase_21 AC 313 ms
84,340 KB
testcase_22 AC 322 ms
83,968 KB
testcase_23 AC 325 ms
85,040 KB
testcase_24 AC 340 ms
85,996 KB
testcase_25 AC 350 ms
85,808 KB
testcase_26 AC 353 ms
86,016 KB
testcase_27 AC 59 ms
64,384 KB
testcase_28 AC 58 ms
64,000 KB
testcase_29 AC 63 ms
66,304 KB
testcase_30 AC 236 ms
82,280 KB
testcase_31 AC 242 ms
80,512 KB
testcase_32 AC 41 ms
52,992 KB
testcase_33 AC 40 ms
52,224 KB
testcase_34 AC 39 ms
52,864 KB
testcase_35 AC 39 ms
52,608 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