結果

問題 No.2028 Even Choice
ユーザー H3PO4H3PO4
提出日時 2022-08-05 21:58:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 247 ms / 2,000 ms
コード長 463 bytes
コンパイル時間 176 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 108,544 KB
最終ジャッジ日時 2024-09-15 18:31:35
合計ジャッジ時間 5,094 ms
ジャッジサーバーID
(参考情報)
judge4 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 247 ms
106,872 KB
testcase_01 AC 233 ms
107,944 KB
testcase_02 AC 245 ms
105,976 KB
testcase_03 AC 136 ms
108,328 KB
testcase_04 AC 138 ms
107,688 KB
testcase_05 AC 143 ms
82,528 KB
testcase_06 AC 226 ms
101,632 KB
testcase_07 AC 143 ms
84,864 KB
testcase_08 AC 192 ms
98,448 KB
testcase_09 AC 206 ms
103,168 KB
testcase_10 AC 100 ms
84,608 KB
testcase_11 AC 141 ms
80,512 KB
testcase_12 AC 101 ms
76,672 KB
testcase_13 AC 173 ms
108,544 KB
testcase_14 AC 164 ms
84,076 KB
testcase_15 AC 40 ms
52,224 KB
testcase_16 AC 41 ms
52,480 KB
testcase_17 AC 41 ms
52,352 KB
testcase_18 AC 42 ms
52,864 KB
testcase_19 AC 42 ms
52,608 KB
testcase_20 AC 49 ms
59,904 KB
testcase_21 AC 49 ms
60,800 KB
testcase_22 AC 45 ms
58,368 KB
testcase_23 AC 41 ms
52,224 KB
testcase_24 AC 41 ms
52,608 KB
testcase_25 AC 41 ms
52,224 KB
testcase_26 AC 40 ms
51,968 KB
testcase_27 AC 41 ms
52,224 KB
testcase_28 AC 89 ms
98,688 KB
testcase_29 AC 72 ms
83,968 KB
testcase_30 AC 63 ms
75,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq

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

r = (N - K - 1) // 2 * 2 + 1
h = list(A[r + 1:])
heapq.heapify(h)
while len(h) >= K:
    heapq.heappop(h)
s = sum(h)
ans = 0
for i in range(r, -1, -2):
    ans = max(ans, s + A[i])
    if i >= 0:
        p = heapq.heappushpop(h, A[i])
        s += A[i]
        s -= p
    if i - 1 >= 0:
        p = heapq.heappushpop(h, A[i - 1])
        s += A[i - 1]
        s -= p
print(ans)
0