結果

問題 No.2028 Even Choice
ユーザー ニックネームニックネーム
提出日時 2022-08-05 22:48:36
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 469 ms / 2,000 ms
コード長 506 bytes
コンパイル時間 80 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 32,736 KB
最終ジャッジ日時 2024-09-15 20:13:20
合計ジャッジ時間 5,731 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 415 ms
32,716 KB
testcase_01 AC 323 ms
32,584 KB
testcase_02 AC 469 ms
32,456 KB
testcase_03 AC 206 ms
32,736 KB
testcase_04 AC 252 ms
32,724 KB
testcase_05 AC 91 ms
15,536 KB
testcase_06 AC 402 ms
30,000 KB
testcase_07 AC 100 ms
16,472 KB
testcase_08 AC 318 ms
24,248 KB
testcase_09 AC 253 ms
26,100 KB
testcase_10 AC 83 ms
16,464 KB
testcase_11 AC 106 ms
14,420 KB
testcase_12 AC 61 ms
12,032 KB
testcase_13 AC 191 ms
27,604 KB
testcase_14 AC 153 ms
16,592 KB
testcase_15 AC 29 ms
10,752 KB
testcase_16 AC 29 ms
10,752 KB
testcase_17 AC 29 ms
10,624 KB
testcase_18 AC 30 ms
10,752 KB
testcase_19 AC 31 ms
10,752 KB
testcase_20 AC 30 ms
10,752 KB
testcase_21 AC 30 ms
10,752 KB
testcase_22 AC 31 ms
10,752 KB
testcase_23 AC 29 ms
10,624 KB
testcase_24 AC 30 ms
10,624 KB
testcase_25 AC 30 ms
10,752 KB
testcase_26 AC 31 ms
10,624 KB
testcase_27 AC 31 ms
10,624 KB
testcase_28 AC 78 ms
24,792 KB
testcase_29 AC 61 ms
19,836 KB
testcase_30 AC 51 ms
16,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappop, heappush
n, k = map(int, input().split())
a = list(map(int, input().split()))
if k == 1: print(max(a[1::2])); exit()
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