結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 246 ms
107,184 KB
testcase_01 AC 232 ms
107,756 KB
testcase_02 AC 243 ms
105,644 KB
testcase_03 AC 134 ms
107,948 KB
testcase_04 AC 139 ms
107,560 KB
testcase_05 AC 145 ms
81,664 KB
testcase_06 AC 229 ms
101,504 KB
testcase_07 AC 143 ms
84,736 KB
testcase_08 AC 189 ms
98,432 KB
testcase_09 AC 205 ms
102,656 KB
testcase_10 AC 97 ms
84,224 KB
testcase_11 AC 143 ms
80,776 KB
testcase_12 AC 103 ms
76,544 KB
testcase_13 AC 172 ms
108,032 KB
testcase_14 AC 164 ms
83,712 KB
testcase_15 AC 40 ms
51,840 KB
testcase_16 AC 40 ms
51,584 KB
testcase_17 AC 40 ms
52,096 KB
testcase_18 AC 42 ms
52,224 KB
testcase_19 AC 41 ms
52,352 KB
testcase_20 AC 47 ms
59,008 KB
testcase_21 AC 48 ms
59,904 KB
testcase_22 AC 45 ms
58,368 KB
testcase_23 AC 40 ms
52,480 KB
testcase_24 AC 40 ms
51,840 KB
testcase_25 AC 40 ms
52,352 KB
testcase_26 AC 40 ms
52,096 KB
testcase_27 AC 41 ms
52,352 KB
testcase_28 AC 87 ms
98,176 KB
testcase_29 AC 69 ms
83,840 KB
testcase_30 AC 61 ms
75,904 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