結果

問題 No.2028 Even Choice
ユーザー Kiri8128Kiri8128
提出日時 2022-08-05 22:42:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 205 ms / 2,000 ms
コード長 489 bytes
コンパイル時間 320 ms
コンパイル使用メモリ 81,664 KB
実行使用メモリ 99,856 KB
最終ジャッジ日時 2024-09-15 20:06:01
合計ジャッジ時間 5,080 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 205 ms
95,388 KB
testcase_01 AC 200 ms
95,232 KB
testcase_02 AC 202 ms
95,472 KB
testcase_03 AC 108 ms
99,736 KB
testcase_04 AC 110 ms
99,856 KB
testcase_05 AC 123 ms
78,592 KB
testcase_06 AC 194 ms
93,384 KB
testcase_07 AC 135 ms
79,872 KB
testcase_08 AC 161 ms
87,424 KB
testcase_09 AC 176 ms
89,344 KB
testcase_10 AC 81 ms
80,076 KB
testcase_11 AC 132 ms
79,232 KB
testcase_12 AC 115 ms
76,032 KB
testcase_13 AC 147 ms
91,392 KB
testcase_14 AC 143 ms
80,512 KB
testcase_15 AC 40 ms
51,840 KB
testcase_16 AC 41 ms
52,224 KB
testcase_17 AC 40 ms
51,840 KB
testcase_18 AC 42 ms
52,736 KB
testcase_19 AC 41 ms
52,480 KB
testcase_20 AC 49 ms
59,904 KB
testcase_21 AC 47 ms
59,008 KB
testcase_22 AC 47 ms
58,496 KB
testcase_23 AC 40 ms
52,224 KB
testcase_24 AC 41 ms
52,736 KB
testcase_25 AC 41 ms
52,352 KB
testcase_26 AC 40 ms
52,224 KB
testcase_27 AC 41 ms
52,424 KB
testcase_28 AC 73 ms
83,072 KB
testcase_29 AC 63 ms
75,392 KB
testcase_30 AC 57 ms
69,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappush, heappop

H = []
hpush = lambda x: heappush(H, x)
hpop = lambda: heappop(H)
hmin = lambda: H[0] if H else 0

N, K = map(int, input().split())
A = [int(a) for a in input().split()]
s = 0
for i in range(N - K + 1, N):
    a = A[i]
    s += a
    hpush(a)

ans = 0
for i in range(N - K + 1)[::-1]:
    a = A[i]
    if i % 2:
        ans = max(ans, s + a)
    
    m = hmin()
    if K > 1 and a > m:
        hpush(a)
        hpop()
        s += a - m
    
print(ans)
0