結果

問題 No.2028 Even Choice
ユーザー Kiri8128Kiri8128
提出日時 2022-08-05 22:39:57
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 479 bytes
コンパイル時間 383 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 99,968 KB
最終ジャッジ日時 2024-09-15 20:01:00
合計ジャッジ時間 4,862 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 218 ms
95,232 KB
testcase_01 AC 214 ms
96,000 KB
testcase_02 AC 214 ms
95,360 KB
testcase_03 AC 117 ms
99,864 KB
testcase_04 AC 119 ms
99,968 KB
testcase_05 AC 136 ms
78,604 KB
testcase_06 AC 206 ms
93,696 KB
testcase_07 AC 143 ms
80,256 KB
testcase_08 AC 172 ms
87,424 KB
testcase_09 AC 190 ms
89,600 KB
testcase_10 AC 93 ms
79,616 KB
testcase_11 AC 141 ms
78,976 KB
testcase_12 AC 125 ms
76,416 KB
testcase_13 AC 158 ms
91,392 KB
testcase_14 AC 154 ms
80,000 KB
testcase_15 AC 43 ms
52,352 KB
testcase_16 AC 42 ms
51,968 KB
testcase_17 AC 43 ms
52,096 KB
testcase_18 AC 43 ms
52,608 KB
testcase_19 AC 43 ms
52,352 KB
testcase_20 AC 53 ms
59,520 KB
testcase_21 AC 53 ms
59,264 KB
testcase_22 AC 49 ms
58,752 KB
testcase_23 WA -
testcase_24 AC 42 ms
52,224 KB
testcase_25 WA -
testcase_26 AC 42 ms
52,864 KB
testcase_27 AC 42 ms
52,096 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
権限があれば一括ダウンロードができます

ソースコード

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 a > m:
        hpush(a)
        hpop()
        s += a - m
    
print(ans)
0