結果

問題 No.2028 Even Choice
ユーザー tassei903tassei903
提出日時 2022-08-08 07:21:35
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 898 bytes
コンパイル時間 133 ms
コンパイル使用メモリ 82,724 KB
実行使用メモリ 119,052 KB
最終ジャッジ日時 2024-09-18 18:38:56
合計ジャッジ時間 5,845 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 223 ms
106,856 KB
testcase_01 AC 199 ms
106,928 KB
testcase_02 AC 232 ms
106,596 KB
testcase_03 AC 108 ms
119,052 KB
testcase_04 AC 130 ms
118,448 KB
testcase_05 AC 120 ms
81,280 KB
testcase_06 AC 198 ms
104,192 KB
testcase_07 AC 120 ms
83,584 KB
testcase_08 AC 190 ms
99,072 KB
testcase_09 AC 182 ms
101,632 KB
testcase_10 AC 86 ms
84,008 KB
testcase_11 AC 144 ms
80,000 KB
testcase_12 AC 109 ms
77,284 KB
testcase_13 AC 167 ms
105,216 KB
testcase_14 AC 148 ms
83,968 KB
testcase_15 AC 36 ms
52,480 KB
testcase_16 AC 35 ms
52,608 KB
testcase_17 AC 35 ms
52,736 KB
testcase_18 AC 40 ms
59,136 KB
testcase_19 AC 37 ms
53,632 KB
testcase_20 AC 46 ms
61,952 KB
testcase_21 AC 44 ms
60,672 KB
testcase_22 AC 40 ms
59,264 KB
testcase_23 RE -
testcase_24 AC 35 ms
52,864 KB
testcase_25 AC 34 ms
52,096 KB
testcase_26 AC 33 ms
52,480 KB
testcase_27 AC 34 ms
52,864 KB
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
権限があれば一括ダウンロードができます

ソースコード

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[i])

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