結果

問題 No.2028 Even Choice
ユーザー FromBooskaFromBooska
提出日時 2023-08-09 18:55:14
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 781 bytes
コンパイル時間 275 ms
コンパイル使用メモリ 82,148 KB
実行使用メモリ 112,656 KB
最終ジャッジ日時 2024-11-15 15:49:56
合計ジャッジ時間 5,830 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 213 ms
102,144 KB
testcase_01 AC 193 ms
102,144 KB
testcase_02 AC 223 ms
101,760 KB
testcase_03 WA -
testcase_04 AC 131 ms
111,248 KB
testcase_05 AC 104 ms
81,152 KB
testcase_06 AC 197 ms
103,552 KB
testcase_07 AC 119 ms
82,688 KB
testcase_08 AC 180 ms
94,976 KB
testcase_09 AC 167 ms
97,792 KB
testcase_10 AC 88 ms
82,688 KB
testcase_11 AC 122 ms
80,256 KB
testcase_12 AC 110 ms
77,184 KB
testcase_13 AC 144 ms
101,248 KB
testcase_14 AC 136 ms
83,328 KB
testcase_15 AC 39 ms
52,096 KB
testcase_16 AC 40 ms
52,096 KB
testcase_17 AC 40 ms
52,352 KB
testcase_18 AC 41 ms
53,248 KB
testcase_19 AC 45 ms
58,240 KB
testcase_20 AC 51 ms
61,568 KB
testcase_21 AC 48 ms
60,288 KB
testcase_22 AC 45 ms
58,368 KB
testcase_23 AC 38 ms
52,352 KB
testcase_24 AC 38 ms
51,968 KB
testcase_25 AC 39 ms
52,352 KB
testcase_26 WA -
testcase_27 AC 38 ms
52,096 KB
testcase_28 AC 85 ms
92,288 KB
testcase_29 AC 72 ms
82,432 KB
testcase_30 AC 65 ms
74,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 一番手前の数字は偶数番目である必要ある
# それ以後で元々偶数番なら最初にとればいいので取れる
# それ以後で奇数番なら最初の偶数番を取ってから取ればいいので取れる
# つまり一番手前が偶数番ならば自由にとれる
# 後ろから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]
    if len(H) < K:
        heappush(H, a)
        s += a
    else:
        smallest = heappop(H)
        heappush(H, a)
        s -= smallest
        s += a
        if i%2 == 1: 
            ans = max(ans, s)
    
print(ans)






0