結果

問題 No.2028 Even Choice
ユーザー EguyEguy
提出日時 2022-08-05 21:40:49
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 740 bytes
コンパイル時間 462 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 113,800 KB
最終ジャッジ日時 2024-09-15 18:00:33
合計ジャッジ時間 5,467 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 241 ms
102,784 KB
testcase_01 AC 216 ms
103,044 KB
testcase_02 AC 245 ms
103,036 KB
testcase_03 AC 129 ms
113,800 KB
testcase_04 AC 150 ms
113,296 KB
testcase_05 AC 136 ms
82,048 KB
testcase_06 AC 231 ms
105,088 KB
testcase_07 AC 132 ms
84,224 KB
testcase_08 AC 195 ms
97,280 KB
testcase_09 AC 187 ms
99,072 KB
testcase_10 AC 102 ms
84,480 KB
testcase_11 AC 139 ms
80,384 KB
testcase_12 AC 123 ms
77,696 KB
testcase_13 AC 162 ms
101,760 KB
testcase_14 AC 147 ms
84,096 KB
testcase_15 AC 42 ms
52,352 KB
testcase_16 AC 43 ms
52,608 KB
testcase_17 AC 43 ms
52,480 KB
testcase_18 AC 49 ms
57,984 KB
testcase_19 AC 45 ms
52,992 KB
testcase_20 AC 65 ms
63,232 KB
testcase_21 AC 56 ms
60,672 KB
testcase_22 AC 50 ms
59,008 KB
testcase_23 RE -
testcase_24 AC 43 ms
52,608 KB
testcase_25 RE -
testcase_26 AC 44 ms
52,224 KB
testcase_27 AC 43 ms
52,224 KB
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys, math
sys.setrecursionlimit(1000000)
INF = 1 << 100
#mod = 1000000007
mod = 998244353
input = lambda: sys.stdin.readline().rstrip()
li = lambda: list(map(int, input().split()))
from heapq import *

N, K = li()
A = li()

if K == 1:
    ans = -INF
    for i in range(1, N, 2):
        ans = max(ans, A[i])
    print(ans)

hq = []
su = 0
acc = [-INF] * N
for i in range(N)[::-1]:
    a = A[i]
    if len(hq) == K-1:
        x = heappop(hq)
        if x > a:
            heappush(hq, x)
        else:
            heappush(hq, a)
            su += a - x
    else:
        su += a
        heappush(hq, a)
    if len(hq) == K-1:
        acc[i] = su

ans = -INF
for i in range(1, N-1, 2):
    ans = max(ans, A[i] + acc[i+1])

print(ans)
0