結果

問題 No.324 落ちてた閉路グラフ
ユーザー H3PO4H3PO4
提出日時 2020-10-19 08:52:57
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 856 bytes
コンパイル時間 123 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 44,612 KB
最終ジャッジ日時 2024-07-21 07:47:47
合計ジャッジ時間 21,289 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 432 ms
44,104 KB
testcase_01 AC 438 ms
44,100 KB
testcase_02 AC 439 ms
43,976 KB
testcase_03 AC 433 ms
43,852 KB
testcase_04 AC 502 ms
44,360 KB
testcase_05 AC 526 ms
44,360 KB
testcase_06 AC 489 ms
44,228 KB
testcase_07 AC 526 ms
44,480 KB
testcase_08 AC 489 ms
44,360 KB
testcase_09 AC 476 ms
44,228 KB
testcase_10 AC 490 ms
44,240 KB
testcase_11 AC 486 ms
44,488 KB
testcase_12 RE -
testcase_13 AC 451 ms
43,856 KB
testcase_14 AC 443 ms
44,236 KB
testcase_15 AC 450 ms
43,972 KB
testcase_16 RE -
testcase_17 AC 429 ms
44,100 KB
testcase_18 AC 433 ms
43,972 KB
testcase_19 AC 433 ms
43,844 KB
testcase_20 RE -
testcase_21 AC 435 ms
44,104 KB
testcase_22 AC 435 ms
44,364 KB
testcase_23 AC 431 ms
44,356 KB
testcase_24 RE -
testcase_25 AC 437 ms
44,100 KB
testcase_26 AC 439 ms
44,228 KB
testcase_27 AC 437 ms
44,240 KB
testcase_28 AC 448 ms
43,856 KB
testcase_29 RE -
testcase_30 AC 435 ms
44,356 KB
testcase_31 AC 436 ms
44,612 KB
testcase_32 AC 520 ms
44,232 KB
testcase_33 AC 510 ms
44,356 KB
testcase_34 AC 480 ms
44,096 KB
testcase_35 AC 434 ms
44,356 KB
testcase_36 AC 459 ms
44,108 KB
testcase_37 AC 443 ms
44,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

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


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