結果

問題 No.324 落ちてた閉路グラフ
ユーザー H3PO4H3PO4
提出日時 2020-10-19 08:54:30
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 525 ms / 5,000 ms
コード長 891 bytes
コンパイル時間 196 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 44,228 KB
最終ジャッジ日時 2024-07-21 07:48:14
合計ジャッジ時間 19,027 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 449 ms
43,840 KB
testcase_01 AC 443 ms
43,584 KB
testcase_02 AC 453 ms
43,964 KB
testcase_03 AC 445 ms
43,584 KB
testcase_04 AC 495 ms
43,720 KB
testcase_05 AC 525 ms
43,972 KB
testcase_06 AC 498 ms
43,968 KB
testcase_07 AC 512 ms
43,584 KB
testcase_08 AC 491 ms
43,584 KB
testcase_09 AC 482 ms
43,716 KB
testcase_10 AC 494 ms
43,968 KB
testcase_11 AC 474 ms
43,840 KB
testcase_12 AC 432 ms
44,220 KB
testcase_13 AC 435 ms
44,228 KB
testcase_14 AC 451 ms
43,780 KB
testcase_15 AC 468 ms
44,092 KB
testcase_16 AC 440 ms
44,096 KB
testcase_17 AC 433 ms
43,716 KB
testcase_18 AC 433 ms
43,840 KB
testcase_19 AC 436 ms
43,720 KB
testcase_20 AC 433 ms
43,588 KB
testcase_21 AC 436 ms
43,968 KB
testcase_22 AC 433 ms
43,720 KB
testcase_23 AC 438 ms
43,588 KB
testcase_24 AC 441 ms
43,968 KB
testcase_25 AC 432 ms
43,580 KB
testcase_26 AC 436 ms
43,980 KB
testcase_27 AC 433 ms
44,100 KB
testcase_28 AC 446 ms
43,716 KB
testcase_29 AC 442 ms
43,972 KB
testcase_30 AC 441 ms
43,588 KB
testcase_31 AC 446 ms
43,840 KB
testcase_32 AC 518 ms
43,592 KB
testcase_33 AC 510 ms
43,968 KB
testcase_34 AC 487 ms
44,064 KB
testcase_35 AC 443 ms
43,976 KB
testcase_36 AC 466 ms
43,716 KB
testcase_37 AC 464 ms
43,708 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

N, M = map(int, input().split())
W = tuple(map(int, input().split()))
MAX = 1_000_000

if M < 2:
    print(0)
    exit()


def dp(last, non_last):
    for w in W[:-1]:
        new_last = np.full(M + 1, -MAX)
        new_last[1:] = np.maximum(last[:-1] + w, non_last[:-1])
        new_non_last = np.maximum(last, non_last)
        last, non_last = new_last, new_non_last
    return last, non_last


# dp[i] = iコの点を打ち終えている
# 一番目の点を含む
dp_last = np.full(M + 1, -MAX)
dp_non_last = np.full(M + 1, -MAX)
dp_last[1] = 0
dp_last, dp_non_last = dp(dp_last, dp_non_last)
ans = max(dp_last[-1] + W[-1], dp_non_last[-1])

# 一番目の点を含まない

dp_last = np.full(M + 1, -MAX)
dp_non_last = np.full(M + 1, -MAX)
dp_non_last[0] = 0
dp_last, dp_non_last = dp(dp_last, dp_non_last)
ans = max(ans, dp_last[-1], dp_non_last[-1])
print(ans)
0