結果

問題 No.2028 Even Choice
ユーザー FromBooskaFromBooska
提出日時 2024-03-18 16:43:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 218 ms / 2,000 ms
コード長 743 bytes
コンパイル時間 249 ms
コンパイル使用メモリ 82,788 KB
実行使用メモリ 114,352 KB
最終ジャッジ日時 2024-09-30 04:59:03
合計ジャッジ時間 5,351 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 217 ms
102,720 KB
testcase_01 AC 186 ms
102,588 KB
testcase_02 AC 218 ms
102,968 KB
testcase_03 AC 116 ms
114,352 KB
testcase_04 AC 138 ms
112,696 KB
testcase_05 AC 104 ms
81,444 KB
testcase_06 AC 186 ms
104,736 KB
testcase_07 AC 111 ms
83,144 KB
testcase_08 AC 167 ms
96,500 KB
testcase_09 AC 156 ms
99,412 KB
testcase_10 AC 84 ms
82,968 KB
testcase_11 AC 110 ms
79,996 KB
testcase_12 AC 107 ms
77,060 KB
testcase_13 AC 141 ms
102,000 KB
testcase_14 AC 128 ms
83,484 KB
testcase_15 AC 39 ms
52,952 KB
testcase_16 AC 39 ms
53,220 KB
testcase_17 AC 37 ms
53,152 KB
testcase_18 AC 41 ms
53,944 KB
testcase_19 AC 45 ms
58,964 KB
testcase_20 AC 52 ms
62,204 KB
testcase_21 AC 52 ms
62,240 KB
testcase_22 AC 48 ms
59,744 KB
testcase_23 AC 40 ms
52,776 KB
testcase_24 AC 38 ms
52,616 KB
testcase_25 AC 36 ms
52,268 KB
testcase_26 AC 36 ms
53,084 KB
testcase_27 AC 36 ms
53,380 KB
testcase_28 AC 80 ms
94,220 KB
testcase_29 AC 71 ms
84,736 KB
testcase_30 AC 63 ms
77,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 取れるのは偶数番だけ、最初に偶数番を取れば、あとは奇数番が偶数番になるので結局好きなのを取れる
# つまり最初だけ偶数番、あとは好きなのを取れる
# 逆順heapでK-1個の最高値を事前計算するか

from heapq import heapify, heappop, heappush

N, K = map(int, input().split())
A = list(map(int, input().split()))


largest_sum = [0]*N
H = []
heapify(H)
s = 0
for i in range(N-1, 0, -1):
    heappush(H, A[i])
    s += A[i]
    if len(H)>K-1:
        smallest = heappop(H)
        s -= smallest
    largest_sum[i-1] = s

#print(A)
#print(largest_sum)

ans = 0
for i in range(N):
    if i%2 == 1:
        calc = A[i]+largest_sum[i]
        ans = max(ans, calc)
print(ans)
0