結果

問題 No.2028 Even Choice
ユーザー ntudantuda
提出日時 2022-10-08 12:12:29
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 590 bytes
コンパイル時間 281 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 104,224 KB
最終ジャッジ日時 2024-06-22 13:32:27
合計ジャッジ時間 5,993 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 224 ms
102,088 KB
testcase_01 WA -
testcase_02 AC 218 ms
102,104 KB
testcase_03 AC 111 ms
100,480 KB
testcase_04 AC 128 ms
101,096 KB
testcase_05 AC 121 ms
81,164 KB
testcase_06 AC 206 ms
104,224 KB
testcase_07 AC 125 ms
83,036 KB
testcase_08 AC 167 ms
95,492 KB
testcase_09 AC 166 ms
98,988 KB
testcase_10 WA -
testcase_11 AC 122 ms
80,140 KB
testcase_12 AC 100 ms
77,316 KB
testcase_13 WA -
testcase_14 AC 136 ms
82,768 KB
testcase_15 AC 35 ms
52,600 KB
testcase_16 AC 35 ms
52,616 KB
testcase_17 AC 36 ms
52,824 KB
testcase_18 AC 36 ms
53,368 KB
testcase_19 AC 39 ms
53,536 KB
testcase_20 AC 48 ms
64,104 KB
testcase_21 AC 42 ms
60,452 KB
testcase_22 WA -
testcase_23 AC 35 ms
52,792 KB
testcase_24 AC 35 ms
53,152 KB
testcase_25 AC 36 ms
53,040 KB
testcase_26 WA -
testcase_27 AC 36 ms
53,376 KB
testcase_28 AC 69 ms
90,932 KB
testcase_29 AC 59 ms
81,040 KB
testcase_30 AC 52 ms
73,852 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq
N, K = map(int, input().split())
A = list(map(int, input().split()))
K2 = (K - 1) // 2 * 2 + 2 - (K & 1)
X = A[N - K2:N]
if K == 1:
    print(max(A[1:N:2]))
    exit()
heapq.heapify(X)
while len(X) > K - 1:
    heapq.heappop(X)
tmp = sum(X)
ans = A[1] + tmp
for i in reversed(range(1, N - K2, 2)):
    ans = max(ans, A[i] + tmp)
    if i == 1:
        break
    for j in range(2):
        tmp2 = heapq.heappop(X)
        a = A[i - j]
        if tmp2 > a:
            heapq.heappush(X, tmp2)
        else:
            tmp += a - tmp2
            heapq.heappush(X, a)
print(ans)
0