結果

問題 No.2028 Even Choice
ユーザー AkariAkari
提出日時 2022-08-05 22:03:08
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 656 ms / 2,000 ms
コード長 523 bytes
コンパイル時間 311 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 50,064 KB
最終ジャッジ日時 2024-09-15 18:51:12
合計ジャッジ時間 20,696 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 636 ms
47,580 KB
testcase_01 AC 617 ms
47,904 KB
testcase_02 AC 656 ms
47,456 KB
testcase_03 AC 543 ms
50,064 KB
testcase_04 AC 544 ms
49,036 KB
testcase_05 AC 515 ms
44,248 KB
testcase_06 AC 632 ms
45,660 KB
testcase_07 AC 537 ms
44,256 KB
testcase_08 AC 582 ms
44,896 KB
testcase_09 AC 582 ms
45,300 KB
testcase_10 AC 520 ms
44,636 KB
testcase_11 AC 516 ms
44,124 KB
testcase_12 AC 516 ms
43,996 KB
testcase_13 AC 559 ms
48,160 KB
testcase_14 AC 544 ms
44,136 KB
testcase_15 AC 509 ms
43,996 KB
testcase_16 AC 504 ms
44,004 KB
testcase_17 AC 506 ms
44,252 KB
testcase_18 AC 503 ms
44,248 KB
testcase_19 AC 512 ms
44,376 KB
testcase_20 AC 507 ms
44,124 KB
testcase_21 AC 526 ms
44,384 KB
testcase_22 AC 498 ms
43,872 KB
testcase_23 AC 511 ms
44,128 KB
testcase_24 AC 492 ms
44,120 KB
testcase_25 AC 493 ms
44,124 KB
testcase_26 AC 495 ms
44,252 KB
testcase_27 AC 505 ms
44,120 KB
testcase_28 AC 509 ms
45,024 KB
testcase_29 AC 518 ms
43,996 KB
testcase_30 AC 497 ms
44,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from heapq import heappushpop, heappush
import numpy as np






def main():
    n, k = map(int, input().split())
    A = np.fromstring(input(), np.int64, sep=' ')
    if k == 1:
        print(A[1::2].max())
        exit()
    s = A[-k+1:].sum()
    q = []
    ans = s
    for a in A[-k+1:]: heappush(q, a)
    for i in range(n - k, -1, -1):
        a = A[i]
        if i & 1 and a + s > ans: ans = a + s
        s += a
        s -= heappushpop(q, a)
    print(ans)









if __name__ == '__main__':
    main()
0