結果

問題 No.2028 Even Choice
ユーザー tassei903tassei903
提出日時 2022-08-08 07:23:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 265 ms / 2,000 ms
コード長 899 bytes
コンパイル時間 276 ms
コンパイル使用メモリ 81,588 KB
実行使用メモリ 118,396 KB
最終ジャッジ日時 2024-09-18 18:39:53
合計ジャッジ時間 5,510 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 255 ms
106,408 KB
testcase_01 AC 231 ms
107,036 KB
testcase_02 AC 265 ms
106,540 KB
testcase_03 AC 122 ms
118,396 KB
testcase_04 AC 147 ms
117,632 KB
testcase_05 AC 144 ms
81,384 KB
testcase_06 AC 234 ms
104,068 KB
testcase_07 AC 138 ms
83,892 KB
testcase_08 AC 221 ms
98,736 KB
testcase_09 AC 212 ms
102,008 KB
testcase_10 AC 99 ms
83,464 KB
testcase_11 AC 169 ms
80,284 KB
testcase_12 AC 121 ms
76,864 KB
testcase_13 AC 173 ms
105,468 KB
testcase_14 AC 171 ms
83,848 KB
testcase_15 AC 40 ms
54,684 KB
testcase_16 AC 39 ms
53,052 KB
testcase_17 AC 41 ms
52,704 KB
testcase_18 AC 45 ms
58,708 KB
testcase_19 AC 43 ms
54,508 KB
testcase_20 AC 54 ms
62,832 KB
testcase_21 AC 49 ms
60,920 KB
testcase_22 AC 46 ms
59,504 KB
testcase_23 AC 40 ms
53,812 KB
testcase_24 AC 39 ms
53,188 KB
testcase_25 AC 41 ms
54,388 KB
testcase_26 AC 39 ms
52,644 KB
testcase_27 AC 39 ms
52,696 KB
testcase_28 AC 105 ms
98,796 KB
testcase_29 AC 92 ms
90,604 KB
testcase_30 AC 82 ms
83,932 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################
from heapq import *
ans = 0
n,k = na()
k-=1
a = na()
b = [-float("inf")]
for i in range(1,n,2):
    b.append(max(b[-1],a[i]))
s = 0
hq = []
if n % 2:
    hq.append(a[-1])
    s += a[-1]
    while len(hq) > k:
        x = heappop(hq)
        s-=x
    if len(hq) == k:
        ans = max(ans, s + b[-1])

for i in range(n//2-1,-1,-1):
    heappush(hq, a[i*2])
    s += a[i*2]
    heappush(hq, a[i*2+1])
    s += a[i*2 + 1]
    while len(hq) > k:
        x = heappop(hq)
        s-=x
    if len(hq) == k:
        ans = max(ans, s + b[i])

print(ans)
0