結果

問題 No.649 ここでちょっとQK!
ユーザー Mr.FukuMr.Fuku
提出日時 2018-08-01 17:45:28
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 801 ms / 3,000 ms
コード長 678 bytes
コンパイル時間 247 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 23,936 KB
最終ジャッジ日時 2024-09-19 16:51:01
合計ジャッジ時間 13,906 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,752 KB
testcase_01 AC 26 ms
10,752 KB
testcase_02 AC 26 ms
10,752 KB
testcase_03 AC 596 ms
23,936 KB
testcase_04 AC 801 ms
18,560 KB
testcase_05 AC 694 ms
18,560 KB
testcase_06 AC 662 ms
20,352 KB
testcase_07 AC 27 ms
10,752 KB
testcase_08 AC 25 ms
10,752 KB
testcase_09 AC 27 ms
10,624 KB
testcase_10 AC 25 ms
10,752 KB
testcase_11 AC 26 ms
10,624 KB
testcase_12 AC 370 ms
15,360 KB
testcase_13 AC 363 ms
15,360 KB
testcase_14 AC 361 ms
15,360 KB
testcase_15 AC 364 ms
15,360 KB
testcase_16 AC 363 ms
14,848 KB
testcase_17 AC 430 ms
15,612 KB
testcase_18 AC 459 ms
15,872 KB
testcase_19 AC 502 ms
16,640 KB
testcase_20 AC 563 ms
16,844 KB
testcase_21 AC 583 ms
17,408 KB
testcase_22 AC 629 ms
17,920 KB
testcase_23 AC 653 ms
18,560 KB
testcase_24 AC 679 ms
18,816 KB
testcase_25 AC 748 ms
19,324 KB
testcase_26 AC 795 ms
19,712 KB
testcase_27 AC 31 ms
10,752 KB
testcase_28 AC 31 ms
10,752 KB
testcase_29 AC 30 ms
10,624 KB
testcase_30 AC 363 ms
14,976 KB
testcase_31 AC 394 ms
14,848 KB
testcase_32 AC 26 ms
10,752 KB
testcase_33 AC 26 ms
10,624 KB
testcase_34 AC 27 ms
10,880 KB
testcase_35 AC 26 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq

q,k = map(int,input().split())
low,high,ans = [],[],[]
size = 0

for i in range(q):
    s = list(map(int,input().split()))
    if s[0]==1:
        if size<k:
            heapq.heappush(low,-s[1])
            size+=1
        elif -low[0]>s[1]:
            heapq.heappush(high,-heapq.heappop(low))
            heapq.heappush(low,-s[1])
        else:
            heapq.heappush(high,s[1])
    else:
        if size==k:
            ans.append(-low[0])
            if high:
                low[0] = -heapq.heappop(high)
            else:
                heapq.heappop(low)
                size-=1
        else:
            ans.append(-1)

print("\n".join(map(str,ans)))
0