結果

問題 No.649 ここでちょっとQK!
ユーザー qqqqqqqq
提出日時 2019-07-23 19:05:59
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 423 ms / 3,000 ms
コード長 1,055 bytes
コンパイル時間 97 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 20,352 KB
最終ジャッジ日時 2024-06-26 06:35:32
合計ジャッジ時間 8,039 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 33 ms
10,752 KB
testcase_02 AC 33 ms
10,880 KB
testcase_03 AC 173 ms
17,280 KB
testcase_04 AC 423 ms
18,688 KB
testcase_05 AC 292 ms
18,688 KB
testcase_06 AC 278 ms
20,352 KB
testcase_07 AC 30 ms
10,752 KB
testcase_08 AC 31 ms
10,752 KB
testcase_09 AC 31 ms
10,752 KB
testcase_10 AC 32 ms
10,880 KB
testcase_11 AC 31 ms
10,752 KB
testcase_12 AC 171 ms
14,592 KB
testcase_13 AC 167 ms
14,592 KB
testcase_14 AC 169 ms
14,592 KB
testcase_15 AC 184 ms
14,592 KB
testcase_16 AC 170 ms
14,720 KB
testcase_17 AC 216 ms
15,228 KB
testcase_18 AC 241 ms
15,488 KB
testcase_19 AC 263 ms
15,872 KB
testcase_20 AC 285 ms
16,384 KB
testcase_21 AC 307 ms
16,640 KB
testcase_22 AC 324 ms
16,896 KB
testcase_23 AC 349 ms
17,536 KB
testcase_24 AC 366 ms
17,664 KB
testcase_25 AC 381 ms
18,176 KB
testcase_26 AC 398 ms
18,560 KB
testcase_27 AC 33 ms
10,880 KB
testcase_28 AC 33 ms
10,880 KB
testcase_29 AC 34 ms
10,880 KB
testcase_30 AC 166 ms
14,592 KB
testcase_31 AC 187 ms
14,848 KB
testcase_32 AC 31 ms
10,752 KB
testcase_33 AC 31 ms
10,752 KB
testcase_34 AC 31 ms
10,880 KB
testcase_35 AC 33 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from heapq import heappop, heappush

def main():
    q, k = map(int, input().split())
    ans = []
    # 下からk個をmax_heap
    small = []
    # それ以外をmin_heap
    large = []
    for i in range(q):
        s = input()
        if len(s) != 2:
            _, v = map(int, s.split())
            # まだk個無い時
            if len(small) < k:
                heappush(small, -v)
            else:
                if -small[0] <= v:
                    heappush(large, v)
                else:
                    a = -heappop(small)
                    heappush(small, -v)
                    heappush(large, a)
        else:
            if len(small) < k:
                ans.append(-1)
#                print(-1)
            else:
                a = -heappop(small)
                ans.append(a)
#                print(a)
                if len(large):
                    b = heappop(large)
                    heappush(small, -b)
    print(*ans, sep="\n")

if __name__ == "__main__":
    main()
0