結果

問題 No.2028 Even Choice
ユーザー FromBooskaFromBooska
提出日時 2023-05-17 21:06:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 262 ms / 2,000 ms
コード長 996 bytes
コンパイル時間 407 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 112,076 KB
最終ジャッジ日時 2024-12-15 15:11:41
合計ジャッジ時間 6,576 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 252 ms
101,632 KB
testcase_01 AC 231 ms
102,016 KB
testcase_02 AC 262 ms
102,144 KB
testcase_03 AC 122 ms
112,076 KB
testcase_04 AC 146 ms
110,920 KB
testcase_05 AC 145 ms
80,908 KB
testcase_06 AC 237 ms
104,064 KB
testcase_07 AC 150 ms
83,072 KB
testcase_08 AC 217 ms
94,848 KB
testcase_09 AC 205 ms
98,108 KB
testcase_10 AC 98 ms
82,560 KB
testcase_11 AC 153 ms
79,872 KB
testcase_12 AC 138 ms
77,556 KB
testcase_13 AC 175 ms
101,376 KB
testcase_14 AC 167 ms
83,072 KB
testcase_15 AC 44 ms
52,736 KB
testcase_16 AC 43 ms
52,352 KB
testcase_17 AC 44 ms
51,968 KB
testcase_18 AC 48 ms
53,632 KB
testcase_19 AC 51 ms
58,624 KB
testcase_20 AC 60 ms
61,568 KB
testcase_21 AC 57 ms
60,416 KB
testcase_22 AC 51 ms
59,008 KB
testcase_23 AC 44 ms
52,352 KB
testcase_24 AC 43 ms
52,736 KB
testcase_25 AC 44 ms
52,096 KB
testcase_26 AC 43 ms
52,224 KB
testcase_27 AC 44 ms
52,352 KB
testcase_28 AC 87 ms
93,056 KB
testcase_29 AC 76 ms
83,072 KB
testcase_30 AC 68 ms
75,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 理解できていないのでもう一度やる
# 一番手前は偶数番しか取れない、制約から自明
# 一番手前で偶数番をとるので、それ以後は奇数番は繰り上がるし
# それ以後の偶数番は後ろからとればいいので結局とりたいものが取れる
# 前から見ていって、偶数番を取って、その後の最高値K-1個を探索していると間に合わない
# だから後ろから見ていって、最高値K個をheapで管理、その合計値sも管理
# 後ろから見ていってその番号が偶数番のときのみ、ans更新すればいい

from heapq import *
N, K = map(int, input().split())
A = list(map(int, input().split()))
H = []
heapify(H)
s = 0
ans = 0
for i in range(N-1, -1, -1):
    heappush(H, A[i])
    s += A[i]
    
    if len(H) == K:
        if i%2 == 1: #0-indexedなのでこれが偶数番
            ans = max(ans, s)
        
        smallest = heappop(H)
        s -= smallest
print(ans)
0