結果

問題 No.649 ここでちょっとQK!
ユーザー vwxyzvwxyz
提出日時 2022-03-19 19:15:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 457 ms / 3,000 ms
コード長 1,022 bytes
コンパイル時間 329 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 89,156 KB
最終ジャッジ日時 2024-10-05 02:10:45
合計ジャッジ時間 9,081 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,684 KB
testcase_01 AC 39 ms
52,756 KB
testcase_02 AC 37 ms
54,416 KB
testcase_03 AC 88 ms
76,300 KB
testcase_04 AC 314 ms
86,960 KB
testcase_05 AC 298 ms
89,060 KB
testcase_06 AC 181 ms
83,768 KB
testcase_07 AC 35 ms
53,048 KB
testcase_08 AC 36 ms
53,228 KB
testcase_09 AC 37 ms
53,812 KB
testcase_10 AC 39 ms
53,052 KB
testcase_11 AC 39 ms
54,112 KB
testcase_12 AC 270 ms
83,284 KB
testcase_13 AC 250 ms
82,932 KB
testcase_14 AC 236 ms
82,648 KB
testcase_15 AC 335 ms
84,392 KB
testcase_16 AC 241 ms
79,680 KB
testcase_17 AC 346 ms
82,276 KB
testcase_18 AC 329 ms
82,680 KB
testcase_19 AC 370 ms
83,844 KB
testcase_20 AC 363 ms
84,156 KB
testcase_21 AC 378 ms
86,056 KB
testcase_22 AC 382 ms
85,256 KB
testcase_23 AC 411 ms
86,900 KB
testcase_24 AC 411 ms
87,092 KB
testcase_25 AC 416 ms
86,680 KB
testcase_26 AC 457 ms
89,156 KB
testcase_27 AC 61 ms
69,448 KB
testcase_28 AC 59 ms
67,956 KB
testcase_29 AC 56 ms
67,144 KB
testcase_30 AC 301 ms
84,152 KB
testcase_31 AC 309 ms
81,004 KB
testcase_32 AC 38 ms
53,488 KB
testcase_33 AC 38 ms
53,564 KB
testcase_34 AC 38 ms
53,008 KB
testcase_35 AC 38 ms
53,572 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq
import sys
from heapq import heappush,heappop,heapify,heappushpop,_heappop_max,_heapify_max
def _heappush_max(heap,item):
    heap.append(item)
    heapq._siftdown_max(heap, 0, len(heap)-1)
def _heappushpop_max(heap, item):
    if heap and item < heap[0]:
        item, heap[0] = heap[0], item
        heapq._siftup_max(heap, 0)
    return item
readline=sys.stdin.readline

Q,K=map(int,readline().split())
queue0,queue1=[],[]
for _ in range(Q):
    data=map(int,readline().split())
    if next(data)==1:
        v=next(data)
        if len(queue0)<K:
            _heappush_max(queue0,v)
        else:
            heappush(queue1,v)
            x=_heappop_max(queue0)
            y=heappop(queue1)
            if x>y:
                x,y=y,x
            _heappush_max(queue0,x)
            heappush(queue1,y)
    else:
        if len(queue0)<K:
            ans=-1
        else:
            ans=_heappop_max(queue0)
            if queue1:
                _heappush_max(queue0,heappop(queue1))
        print(ans)
0