結果

問題 No.649 ここでちょっとQK!
ユーザー vwxyzvwxyz
提出日時 2022-03-29 13:27:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 321 ms / 3,000 ms
コード長 1,363 bytes
コンパイル時間 330 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 84,996 KB
最終ジャッジ日時 2024-11-08 02:16:32
合計ジャッジ時間 7,756 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,224 KB
testcase_01 AC 44 ms
52,224 KB
testcase_02 AC 44 ms
52,736 KB
testcase_03 AC 115 ms
76,032 KB
testcase_04 AC 237 ms
84,760 KB
testcase_05 AC 154 ms
82,384 KB
testcase_06 AC 162 ms
81,928 KB
testcase_07 AC 43 ms
52,480 KB
testcase_08 AC 44 ms
52,352 KB
testcase_09 AC 44 ms
52,480 KB
testcase_10 AC 43 ms
52,736 KB
testcase_11 AC 44 ms
52,480 KB
testcase_12 AC 194 ms
80,380 KB
testcase_13 AC 176 ms
80,128 KB
testcase_14 AC 176 ms
80,744 KB
testcase_15 AC 243 ms
81,660 KB
testcase_16 AC 209 ms
79,616 KB
testcase_17 AC 246 ms
80,084 KB
testcase_18 AC 255 ms
80,336 KB
testcase_19 AC 262 ms
81,176 KB
testcase_20 AC 273 ms
81,764 KB
testcase_21 AC 280 ms
82,304 KB
testcase_22 AC 284 ms
82,364 KB
testcase_23 AC 292 ms
82,792 KB
testcase_24 AC 302 ms
83,600 KB
testcase_25 AC 314 ms
84,472 KB
testcase_26 AC 321 ms
84,996 KB
testcase_27 AC 57 ms
60,928 KB
testcase_28 AC 58 ms
61,184 KB
testcase_29 AC 63 ms
63,104 KB
testcase_30 AC 200 ms
80,464 KB
testcase_31 AC 234 ms
79,472 KB
testcase_32 AC 44 ms
52,864 KB
testcase_33 AC 43 ms
52,736 KB
testcase_34 AC 43 ms
52,608 KB
testcase_35 AC 43 ms
52,224 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

class Slope_Trick:
    def __init__(self):
        self.queueL=[]
        self.queueR=[]
    def Push_Left(self,x):
        _heappush_max(self.queueL,heappushpop(self.queueR,x))
    def Push_Right(self,x):
        heappush(self.queueR,_heappushpop_max(self.queueL,x))
    def Pop_Left(self):
        return _heappop_max(self.queueL)
    def Pop_Right(self):
        return heappop(self.queueR)
    def __str__(self):
        return '['+', '.join(map(str,sorted(self.queueL)))+']+['+', '.join(map(str,sorted(self.queueR)))+']'


Q,K=map(int,readline().split())
ST=Slope_Trick()
for _ in range(Q):
    data=map(int,readline().split())
    q=next(data)
    if q==1:
        v=next(data)
        if len(ST.queueL)<K:
            ST.Push_Left(v)
        else:
            ST.Push_Right(v)
    else:
        if len(ST.queueL)==K:
            ans=ST.Pop_Left()
            if ST.queueR:
                ST.Push_Left(ST.Pop_Right())
        else:
            ans=-1
        print(ans)
0