結果

問題 No.2028 Even Choice
ユーザー FromBooskaFromBooska
提出日時 2023-08-09 18:58:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 246 ms / 2,000 ms
コード長 834 bytes
コンパイル時間 356 ms
コンパイル使用メモリ 82,464 KB
実行使用メモリ 112,228 KB
最終ジャッジ日時 2024-11-15 15:53:32
合計ジャッジ時間 5,400 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 238 ms
101,844 KB
testcase_01 AC 221 ms
101,888 KB
testcase_02 AC 246 ms
102,016 KB
testcase_03 AC 115 ms
112,228 KB
testcase_04 AC 137 ms
111,048 KB
testcase_05 AC 136 ms
81,152 KB
testcase_06 AC 219 ms
103,448 KB
testcase_07 AC 136 ms
82,816 KB
testcase_08 AC 197 ms
94,976 KB
testcase_09 AC 186 ms
97,664 KB
testcase_10 AC 85 ms
82,620 KB
testcase_11 AC 138 ms
80,072 KB
testcase_12 AC 127 ms
77,568 KB
testcase_13 AC 161 ms
101,120 KB
testcase_14 AC 153 ms
82,944 KB
testcase_15 AC 41 ms
52,096 KB
testcase_16 AC 41 ms
51,968 KB
testcase_17 AC 41 ms
52,608 KB
testcase_18 AC 43 ms
52,992 KB
testcase_19 AC 48 ms
58,496 KB
testcase_20 AC 54 ms
61,568 KB
testcase_21 AC 51 ms
60,672 KB
testcase_22 AC 47 ms
58,496 KB
testcase_23 AC 40 ms
52,096 KB
testcase_24 AC 39 ms
51,968 KB
testcase_25 AC 40 ms
52,608 KB
testcase_26 AC 40 ms
51,968 KB
testcase_27 AC 41 ms
52,352 KB
testcase_28 AC 82 ms
93,056 KB
testcase_29 AC 71 ms
82,560 KB
testcase_30 AC 64 ms
75,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 一番手前の数字は偶数番目である必要ある
# それ以後で元々偶数番なら最初にとればいいので取れる
# それ以後で奇数番なら最初の偶数番を取ってから取ればいいので取れる
# つまり一番手前が偶数番ならば自由にとれる
# 後ろからheapで高いものを管理
# 常に最大値K-1個をheapに維持する
# 偶数番をとったときにans更新

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

from heapq import *
H = []
heapify(H)
s = 0
ans = 0
for i in range(N-1, -1, -1):
    a = A[i]
    heappush(H, a)
    s += a
    
    if len(H) == K:
        if i%2 == 1: 
            ans = max(ans, s)        
        smallest = heappop(H)
        s -= smallest
        # 常に最大値K-1個をheapに維持する
    
print(ans)

0