結果

問題 No.845 最長の切符
ユーザー brthyyjpbrthyyjp
提出日時 2021-09-27 13:10:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,112 ms / 3,000 ms
コード長 689 bytes
コンパイル時間 264 ms
コンパイル使用メモリ 82,452 KB
実行使用メモリ 90,180 KB
最終ジャッジ日時 2024-07-06 08:48:07
合計ジャッジ時間 6,476 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,096 KB
testcase_01 AC 33 ms
52,608 KB
testcase_02 AC 52 ms
66,688 KB
testcase_03 AC 37 ms
52,224 KB
testcase_04 AC 33 ms
52,224 KB
testcase_05 AC 32 ms
52,352 KB
testcase_06 AC 33 ms
52,352 KB
testcase_07 AC 32 ms
52,608 KB
testcase_08 AC 53 ms
65,792 KB
testcase_09 AC 39 ms
59,136 KB
testcase_10 AC 54 ms
66,048 KB
testcase_11 AC 49 ms
64,256 KB
testcase_12 AC 54 ms
66,048 KB
testcase_13 AC 48 ms
64,256 KB
testcase_14 AC 54 ms
66,432 KB
testcase_15 AC 103 ms
73,088 KB
testcase_16 AC 1,112 ms
89,728 KB
testcase_17 AC 338 ms
79,480 KB
testcase_18 AC 244 ms
83,072 KB
testcase_19 AC 102 ms
69,888 KB
testcase_20 AC 334 ms
89,472 KB
testcase_21 AC 234 ms
89,856 KB
testcase_22 AC 296 ms
74,752 KB
testcase_23 AC 104 ms
68,480 KB
testcase_24 AC 926 ms
89,728 KB
testcase_25 AC 35 ms
51,968 KB
testcase_26 AC 102 ms
89,984 KB
testcase_27 AC 34 ms
52,224 KB
testcase_28 AC 125 ms
90,180 KB
testcase_29 AC 34 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import io, os
input = io.BytesIO(os.read(0,os.fstat(0).st_size)).readline

n, m = map(int, input().split())
g = [[] for i in range(n)]
for i in range(m):
    a, b, c = map(int, input().split())
    a, b =a-1, b-1
    g[a].append((c, b))
    g[b].append((c,a))

dp = [[-1]*n for i in range(1<<n)]
for i in range(n):
    dp[1<<i][i] = 0
for s in range(1<<n):
    for v in range(n):
        if not ((s>>v)&1):
            continue
        for c, u in g[v]:
            if (s>>u)&1:
                continue
            ns = s|(1<<u)
            dp[ns][u] = max(dp[ns][u], dp[s][v]+c)
ans = 0
for s in range(1<<n):
    for v in range(n):
        ans = max(ans, dp[s][v])
print(ans)
0