結果

問題 No.649 ここでちょっとQK!
ユーザー kakira9618kakira9618
提出日時 2018-02-05 23:17:55
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 848 ms / 3,000 ms
コード長 842 bytes
コンパイル時間 309 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 23,936 KB
最終ジャッジ日時 2024-10-08 01:10:39
合計ジャッジ時間 14,723 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 29 ms
10,496 KB
testcase_03 AC 634 ms
23,936 KB
testcase_04 AC 830 ms
18,432 KB
testcase_05 AC 733 ms
18,688 KB
testcase_06 AC 710 ms
20,224 KB
testcase_07 AC 30 ms
10,624 KB
testcase_08 AC 31 ms
10,496 KB
testcase_09 AC 29 ms
10,752 KB
testcase_10 AC 29 ms
10,752 KB
testcase_11 AC 32 ms
10,496 KB
testcase_12 AC 388 ms
15,104 KB
testcase_13 AC 384 ms
15,360 KB
testcase_14 AC 397 ms
15,232 KB
testcase_15 AC 408 ms
15,360 KB
testcase_16 AC 387 ms
14,848 KB
testcase_17 AC 447 ms
15,360 KB
testcase_18 AC 483 ms
15,744 KB
testcase_19 AC 523 ms
16,256 KB
testcase_20 AC 605 ms
16,724 KB
testcase_21 AC 604 ms
17,152 KB
testcase_22 AC 673 ms
17,792 KB
testcase_23 AC 689 ms
18,176 KB
testcase_24 AC 753 ms
18,560 KB
testcase_25 AC 774 ms
18,944 KB
testcase_26 AC 848 ms
19,584 KB
testcase_27 AC 31 ms
10,624 KB
testcase_28 AC 31 ms
10,624 KB
testcase_29 AC 32 ms
10,624 KB
testcase_30 AC 395 ms
14,848 KB
testcase_31 AC 401 ms
14,976 KB
testcase_32 AC 29 ms
10,752 KB
testcase_33 AC 28 ms
10,496 KB
testcase_34 AC 28 ms
10,624 KB
testcase_35 AC 28 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq

Q, K = map(int, input().split())

heap_k_least = []
heap_other = []

size = 0

ans = []
for i in range(Q):
    query = list(map(int, input().split()))
    if query[0] == 1:
        if size < K:
            heapq.heappush(heap_k_least, -query[1])
            size += 1
        elif -heap_k_least[0] > query[1]:
            heapq.heappush(heap_other, -heapq.heappop(heap_k_least))
            heapq.heappush(heap_k_least, -query[1])
        else:
            heapq.heappush(heap_other, query[1])
    else:
        if size >= K:
            ans.append(-heap_k_least[0])
            if heap_other:
                heap_k_least[0] = -heapq.heappop(heap_other)
            else:
                heapq.heappop(heap_k_least)
                size -= 1
        else:
            ans.append(-1)
            
print ('\n'.join(map(str,ans)))
0