結果

問題 No.2028 Even Choice
ユーザー EguyEguy
提出日時 2022-08-05 21:38:05
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 685 bytes
コンパイル時間 442 ms
コンパイル使用メモリ 82,220 KB
実行使用メモリ 114,260 KB
最終ジャッジ日時 2024-09-15 17:57:01
合計ジャッジ時間 5,362 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 232 ms
103,172 KB
testcase_01 AC 203 ms
102,992 KB
testcase_02 AC 233 ms
103,000 KB
testcase_03 AC 116 ms
114,260 KB
testcase_04 AC 139 ms
113,192 KB
testcase_05 AC 124 ms
82,432 KB
testcase_06 AC 224 ms
105,264 KB
testcase_07 AC 124 ms
84,480 KB
testcase_08 AC 186 ms
96,776 KB
testcase_09 AC 175 ms
99,072 KB
testcase_10 AC 86 ms
83,752 KB
testcase_11 AC 124 ms
80,660 KB
testcase_12 AC 109 ms
77,952 KB
testcase_13 AC 148 ms
102,144 KB
testcase_14 AC 136 ms
84,112 KB
testcase_15 AC 39 ms
52,352 KB
testcase_16 AC 40 ms
52,352 KB
testcase_17 AC 39 ms
52,608 KB
testcase_18 AC 43 ms
57,856 KB
testcase_19 AC 42 ms
53,760 KB
testcase_20 AC 54 ms
63,232 KB
testcase_21 AC 52 ms
61,184 KB
testcase_22 AC 46 ms
59,264 KB
testcase_23 WA -
testcase_24 AC 39 ms
52,736 KB
testcase_25 WA -
testcase_26 AC 39 ms
52,352 KB
testcase_27 AC 39 ms
52,460 KB
testcase_28 WA -
testcase_29 AC 62 ms
80,256 KB
testcase_30 AC 56 ms
72,448 KB
権限があれば一括ダウンロードができます

ソースコード

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:
    print(max(A[1:]))
    exit()

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