結果

問題 No.649 ここでちょっとQK!
ユーザー vwxyzvwxyz
提出日時 2022-03-29 13:27:37
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 918 ms / 3,000 ms
コード長 1,363 bytes
コンパイル時間 292 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 21,760 KB
最終ジャッジ日時 2024-11-08 02:16:24
合計ジャッジ時間 14,128 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 32 ms
10,752 KB
testcase_02 AC 31 ms
10,880 KB
testcase_03 AC 394 ms
11,008 KB
testcase_04 AC 918 ms
18,688 KB
testcase_05 AC 493 ms
18,688 KB
testcase_06 AC 419 ms
21,760 KB
testcase_07 AC 32 ms
10,880 KB
testcase_08 AC 31 ms
10,752 KB
testcase_09 AC 31 ms
10,880 KB
testcase_10 AC 32 ms
10,880 KB
testcase_11 AC 32 ms
10,752 KB
testcase_12 AC 247 ms
13,952 KB
testcase_13 AC 241 ms
14,208 KB
testcase_14 AC 243 ms
13,952 KB
testcase_15 AC 309 ms
14,080 KB
testcase_16 AC 305 ms
14,208 KB
testcase_17 AC 421 ms
14,592 KB
testcase_18 AC 468 ms
14,848 KB
testcase_19 AC 511 ms
15,232 KB
testcase_20 AC 552 ms
15,488 KB
testcase_21 AC 599 ms
15,744 KB
testcase_22 AC 632 ms
16,104 KB
testcase_23 AC 679 ms
16,512 KB
testcase_24 AC 707 ms
16,764 KB
testcase_25 AC 744 ms
17,152 KB
testcase_26 AC 772 ms
17,408 KB
testcase_27 AC 33 ms
10,752 KB
testcase_28 AC 33 ms
10,880 KB
testcase_29 AC 34 ms
10,880 KB
testcase_30 AC 252 ms
13,952 KB
testcase_31 AC 356 ms
14,336 KB
testcase_32 AC 30 ms
10,752 KB
testcase_33 AC 30 ms
10,752 KB
testcase_34 AC 30 ms
10,880 KB
testcase_35 AC 30 ms
10,880 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