結果

問題 No.649 ここでちょっとQK!
ユーザー H3PO4H3PO4
提出日時 2020-10-27 08:44:53
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 515 ms / 3,000 ms
コード長 752 bytes
コンパイル時間 183 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 18,816 KB
最終ジャッジ日時 2024-07-21 21:51:14
合計ジャッジ時間 10,733 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 27 ms
10,624 KB
testcase_03 AC 378 ms
10,880 KB
testcase_04 AC 515 ms
18,688 KB
testcase_05 AC 390 ms
18,688 KB
testcase_06 AC 399 ms
18,816 KB
testcase_07 AC 30 ms
10,624 KB
testcase_08 AC 28 ms
10,624 KB
testcase_09 AC 28 ms
10,752 KB
testcase_10 AC 28 ms
10,624 KB
testcase_11 AC 29 ms
10,624 KB
testcase_12 AC 227 ms
14,208 KB
testcase_13 AC 222 ms
14,080 KB
testcase_14 AC 224 ms
14,208 KB
testcase_15 AC 243 ms
14,336 KB
testcase_16 AC 219 ms
14,592 KB
testcase_17 AC 266 ms
14,848 KB
testcase_18 AC 291 ms
15,232 KB
testcase_19 AC 331 ms
15,360 KB
testcase_20 AC 339 ms
15,872 KB
testcase_21 AC 387 ms
16,128 KB
testcase_22 AC 416 ms
16,640 KB
testcase_23 AC 432 ms
16,768 KB
testcase_24 AC 470 ms
17,152 KB
testcase_25 AC 487 ms
17,408 KB
testcase_26 AC 506 ms
17,664 KB
testcase_27 AC 31 ms
10,880 KB
testcase_28 AC 30 ms
11,008 KB
testcase_29 AC 31 ms
10,880 KB
testcase_30 AC 214 ms
14,208 KB
testcase_31 AC 236 ms
14,592 KB
testcase_32 AC 30 ms
10,752 KB
testcase_33 AC 28 ms
10,752 KB
testcase_34 AC 29 ms
10,624 KB
testcase_35 AC 28 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq
import sys

input = sys.stdin.buffer.readline

Q, K = map(int, input().split())
h_left, h_right = [], []

for _ in range(Q):
    q = tuple(map(int, input().split()))
    if q[0] == 1:
        v = q[1]
        if len(h_left) < K:
            heapq.heappush(h_left, -v)
        elif -h_left[0] >= v:
            x = -heapq.heappushpop(h_left, -v)
            heapq.heappush(h_right, x)
        else:
            heapq.heappush(h_right, v)
    else:
        if len(h_left) < K:
            print(-1)
        else:
            if h_right:
                y = heapq.heappop(h_right)
                x = -heapq.heapreplace(h_left, -y)
            else:
                x = -heapq.heappop(h_left)
            print(x)
    # print(h_left, h_right)
0