結果

問題 No.649 ここでちょっとQK!
ユーザー kakira9618kakira9618
提出日時 2018-02-05 23:21:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 289 ms / 3,000 ms
コード長 842 bytes
コンパイル時間 299 ms
コンパイル使用メモリ 82,140 KB
実行使用メモリ 87,136 KB
最終ジャッジ日時 2024-10-08 01:08:56
合計ジャッジ時間 7,658 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,884 KB
testcase_01 AC 37 ms
53,132 KB
testcase_02 AC 38 ms
53,480 KB
testcase_03 AC 175 ms
87,116 KB
testcase_04 AC 262 ms
87,136 KB
testcase_05 AC 204 ms
84,896 KB
testcase_06 AC 217 ms
83,160 KB
testcase_07 AC 38 ms
52,604 KB
testcase_08 AC 37 ms
53,416 KB
testcase_09 AC 36 ms
52,932 KB
testcase_10 AC 36 ms
53,012 KB
testcase_11 AC 38 ms
54,524 KB
testcase_12 AC 169 ms
80,504 KB
testcase_13 AC 173 ms
79,976 KB
testcase_14 AC 172 ms
80,416 KB
testcase_15 AC 206 ms
81,104 KB
testcase_16 AC 188 ms
80,000 KB
testcase_17 AC 212 ms
80,684 KB
testcase_18 AC 234 ms
81,416 KB
testcase_19 AC 241 ms
82,260 KB
testcase_20 AC 243 ms
82,520 KB
testcase_21 AC 246 ms
83,720 KB
testcase_22 AC 267 ms
84,008 KB
testcase_23 AC 265 ms
84,368 KB
testcase_24 AC 273 ms
84,684 KB
testcase_25 AC 286 ms
85,280 KB
testcase_26 AC 289 ms
86,796 KB
testcase_27 AC 63 ms
65,584 KB
testcase_28 AC 60 ms
67,176 KB
testcase_29 AC 60 ms
67,932 KB
testcase_30 AC 185 ms
81,036 KB
testcase_31 AC 211 ms
79,720 KB
testcase_32 AC 38 ms
52,952 KB
testcase_33 AC 38 ms
52,664 KB
testcase_34 AC 36 ms
52,932 KB
testcase_35 AC 38 ms
53,144 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