結果

問題 No.324 落ちてた閉路グラフ
ユーザー rpy3cpprpy3cpp
提出日時 2015-12-18 22:41:38
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 1,380 bytes
コンパイル時間 171 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 11,392 KB
最終ジャッジ日時 2024-09-16 08:40:48
合計ジャッジ時間 22,003 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 30 ms
10,880 KB
testcase_02 AC 30 ms
10,880 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 2,573 ms
10,752 KB
testcase_05 AC 243 ms
11,392 KB
testcase_06 AC 2,527 ms
11,008 KB
testcase_07 AC 1,158 ms
11,392 KB
testcase_08 AC 2,653 ms
11,008 KB
testcase_09 AC 1,344 ms
11,008 KB
testcase_10 AC 2,585 ms
11,008 KB
testcase_11 AC 1,362 ms
10,880 KB
testcase_12 RE -
testcase_13 RE -
testcase_14 AC 32 ms
10,752 KB
testcase_15 AC 34 ms
10,880 KB
testcase_16 RE -
testcase_17 RE -
testcase_18 AC 29 ms
10,752 KB
testcase_19 AC 30 ms
10,624 KB
testcase_20 RE -
testcase_21 AC 29 ms
10,752 KB
testcase_22 AC 30 ms
10,752 KB
testcase_23 AC 30 ms
10,752 KB
testcase_24 RE -
testcase_25 AC 29 ms
10,880 KB
testcase_26 AC 30 ms
10,752 KB
testcase_27 AC 30 ms
10,880 KB
testcase_28 AC 30 ms
10,752 KB
testcase_29 RE -
testcase_30 AC 30 ms
10,752 KB
testcase_31 AC 31 ms
10,752 KB
testcase_32 AC 622 ms
11,392 KB
testcase_33 AC 2,042 ms
11,392 KB
testcase_34 AC 2,005 ms
11,008 KB
testcase_35 AC 37 ms
10,752 KB
testcase_36 AC 711 ms
10,880 KB
testcase_37 AC 32 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
ws = list(map(int, input().split()))

def solve(n, m, ws):
    f00 = [-float('inf')] * (m + 1)
    f01 = f00[:]
    f10 = f00[:]
    f11 = f00[:]
    g00 = f00[:]
    g01 = f00[:]
    g10 = f00[:]
    g11 = f00[:]
    # 初期値の設定。頂点1, 頂点2 を含むか含まないかの 4つの組み合わせに対応して初期化。
    f00[0] = 0      # 頂点1を含まない。最後尾の頂点を含まない。
    f01[1] = 0      # 頂点1を含まない。最後尾の頂点を含む。
    f10[1] = 0      # 頂点1を含む。最後尾の頂点を含まない。
    f11[2] = ws[0]  # 頂点1を含む。最後尾の頂点を含む。(最初の 2つの頂点を含むので、最初の辺を含む)
    for i, w in enumerate(ws[1:-1], 3):  # 3つ目の頂点(=2番目の辺)から順に、これを含むか否かの場合分けで計算を進めていく。
        for k in range(max(1, m + i - n), min(i, m) + 1):
            g00[k] = max(f00[k], f01[k])
            g01[k] = max(f00[k - 1], f01[k - 1] + w)
            g10[k] = max(f10[k], f11[k])
            g11[k] = max(f10[k - 1], f11[k - 1] + w)
        f00, g00 = g00, f00
        f01, g01 = g01, f01
        f10, g10 = g10, f10
        f11, g11 = g11, f11
        f00[0] = 0
    f11[m] += ws[-1]
    return max(f00[m], f01[m], f10[m], f11[m])

print(solve(n, m, ws))
0