結果

問題 No.845 最長の切符
ユーザー 👑 rin204rin204
提出日時 2022-03-12 22:55:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 348 ms / 3,000 ms
コード長 611 bytes
コンパイル時間 207 ms
コンパイル使用メモリ 82,220 KB
実行使用メモリ 89,924 KB
最終ジャッジ日時 2024-09-17 07:21:24
合計ジャッジ時間 4,790 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,096 KB
testcase_01 AC 52 ms
60,160 KB
testcase_02 AC 65 ms
64,896 KB
testcase_03 AC 43 ms
51,968 KB
testcase_04 AC 47 ms
58,880 KB
testcase_05 AC 41 ms
52,096 KB
testcase_06 AC 41 ms
52,096 KB
testcase_07 AC 41 ms
52,224 KB
testcase_08 AC 67 ms
66,048 KB
testcase_09 AC 56 ms
61,056 KB
testcase_10 AC 68 ms
67,328 KB
testcase_11 AC 63 ms
64,996 KB
testcase_12 AC 61 ms
65,280 KB
testcase_13 AC 59 ms
64,664 KB
testcase_14 AC 60 ms
64,896 KB
testcase_15 AC 109 ms
79,180 KB
testcase_16 AC 348 ms
89,472 KB
testcase_17 AC 121 ms
79,140 KB
testcase_18 AC 162 ms
82,816 KB
testcase_19 AC 82 ms
71,168 KB
testcase_20 AC 326 ms
89,728 KB
testcase_21 AC 323 ms
89,436 KB
testcase_22 AC 125 ms
78,848 KB
testcase_23 AC 91 ms
73,088 KB
testcase_24 AC 334 ms
89,856 KB
testcase_25 AC 42 ms
52,096 KB
testcase_26 AC 287 ms
89,472 KB
testcase_27 AC 42 ms
52,480 KB
testcase_28 AC 297 ms
89,924 KB
testcase_29 AC 41 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
dist = [[-1 << 30] * n for _ in range(n)]
for i in range(n):
    dist[i][i] = 0
    
for _ in range(m):
    a, b, c = map(int, input().split())
    a -= 1
    b -= 1
    dist[a][b] = max(dist[a][b], c)
    dist[b][a] = max(dist[b][a], c)
    
dp = [[0] * n for _ in range(1 << n)]
for bit in range(1, 1 << n):
    for i in range(n):
        if not bit >> i & 1:
            continue
        for j in range(n):
            if i == j or not bit >> j & 1:
                continue
            dp[bit][j] = max(dp[bit][j], dp[bit ^ (1 << j)][i] + dist[i][j])
print(max(dp[-1]))
    
0