結果

問題 No.845 最長の切符
ユーザー tpynerivertpyneriver
提出日時 2019-06-28 22:20:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 481 ms / 3,000 ms
コード長 585 bytes
コンパイル時間 247 ms
コンパイル使用メモリ 82,388 KB
実行使用メモリ 90,044 KB
最終ジャッジ日時 2024-07-02 04:52:16
合計ジャッジ時間 5,572 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,608 KB
testcase_01 AC 50 ms
61,056 KB
testcase_02 AC 69 ms
68,096 KB
testcase_03 AC 41 ms
51,968 KB
testcase_04 AC 46 ms
58,368 KB
testcase_05 AC 41 ms
52,224 KB
testcase_06 AC 42 ms
52,096 KB
testcase_07 AC 42 ms
52,352 KB
testcase_08 AC 68 ms
66,944 KB
testcase_09 AC 56 ms
62,080 KB
testcase_10 AC 92 ms
73,344 KB
testcase_11 AC 65 ms
66,560 KB
testcase_12 AC 70 ms
69,120 KB
testcase_13 AC 61 ms
66,432 KB
testcase_14 AC 67 ms
68,480 KB
testcase_15 AC 137 ms
79,360 KB
testcase_16 AC 469 ms
89,728 KB
testcase_17 AC 146 ms
79,420 KB
testcase_18 AC 229 ms
82,688 KB
testcase_19 AC 105 ms
77,696 KB
testcase_20 AC 470 ms
89,984 KB
testcase_21 AC 434 ms
89,860 KB
testcase_22 AC 150 ms
79,152 KB
testcase_23 AC 97 ms
77,056 KB
testcase_24 AC 481 ms
89,596 KB
testcase_25 AC 41 ms
52,108 KB
testcase_26 AC 302 ms
90,044 KB
testcase_27 AC 41 ms
52,096 KB
testcase_28 AC 348 ms
89,960 KB
testcase_29 AC 39 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())

Edge = [[0]*N for _ in range(N)]
for _ in range(M):
    a, b, c = map(int, input().split())
    a -= 1
    b -= 1
    Edge[a][b] = max(Edge[a][b], c)
    Edge[b][a] = Edge[a][b]


dp = [[0]*N for _ in range(2**N)]

for s in range(1, 2**N):
    for i in range(N):
        if not 2**i & s:
            continue
        res = dp[s][i]
        for j in range(N):
            if 2**j & s or not Edge[i][j]:
                continue
            dp[s|2**j][j] = max(dp[s|2**j][j], Edge[i][j] + res)

ans = 0
for d in dp:
    ans = max(ans, max(d))
print(ans)
0