結果

問題 No.2028 Even Choice
ユーザー ニックネームニックネーム
提出日時 2022-08-05 22:42:35
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 467 bytes
コンパイル時間 919 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 33,108 KB
最終ジャッジ日時 2024-09-15 20:06:15
合計ジャッジ時間 6,331 ms
ジャッジサーバーID
(参考情報)
judge2 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 422 ms
32,568 KB
testcase_01 AC 334 ms
32,696 KB
testcase_02 AC 461 ms
32,448 KB
testcase_03 AC 211 ms
32,980 KB
testcase_04 AC 259 ms
33,108 KB
testcase_05 AC 92 ms
15,392 KB
testcase_06 AC 406 ms
30,596 KB
testcase_07 AC 100 ms
16,328 KB
testcase_08 AC 322 ms
24,108 KB
testcase_09 AC 262 ms
26,668 KB
testcase_10 AC 81 ms
16,544 KB
testcase_11 AC 107 ms
14,400 KB
testcase_12 AC 63 ms
12,032 KB
testcase_13 AC 187 ms
27,684 KB
testcase_14 AC 157 ms
16,572 KB
testcase_15 AC 31 ms
10,752 KB
testcase_16 AC 30 ms
10,752 KB
testcase_17 AC 31 ms
10,624 KB
testcase_18 AC 32 ms
10,624 KB
testcase_19 AC 31 ms
10,496 KB
testcase_20 AC 32 ms
10,752 KB
testcase_21 AC 31 ms
10,752 KB
testcase_22 AC 31 ms
10,624 KB
testcase_23 RE -
testcase_24 AC 31 ms
10,624 KB
testcase_25 RE -
testcase_26 AC 31 ms
10,624 KB
testcase_27 AC 31 ms
10,752 KB
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappop, heappush
n, k = map(int, input().split())
a = list(map(int, input().split()))
hq = []
s = 0
ans = 0
for i in range(n-1, -1, -1):
    if len(hq) < k-1:
        heappush(hq, a[i])
        s += a[i]
    elif i%2 == 0:
        m = heappop(hq)
        heappush(hq, max(a[i], m))
        s += max(a[i], m)-m
    else:
        ans = max(ans, a[i]+s)
        m = heappop(hq)
        heappush(hq, max(a[i], m))
        s += max(a[i], m)-m
print(ans)
0