結果

問題 No.845 最長の切符
ユーザー neterukunneterukun
提出日時 2019-06-30 14:48:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 449 ms / 3,000 ms
コード長 844 bytes
コンパイル時間 212 ms
コンパイル使用メモリ 82,240 KB
実行使用メモリ 89,728 KB
最終ジャッジ日時 2024-07-06 03:36:55
合計ジャッジ時間 5,443 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,224 KB
testcase_01 AC 48 ms
59,776 KB
testcase_02 AC 62 ms
66,816 KB
testcase_03 AC 39 ms
51,584 KB
testcase_04 AC 45 ms
59,136 KB
testcase_05 AC 39 ms
51,968 KB
testcase_06 AC 40 ms
52,096 KB
testcase_07 AC 40 ms
52,224 KB
testcase_08 AC 65 ms
66,304 KB
testcase_09 AC 53 ms
62,336 KB
testcase_10 AC 75 ms
71,168 KB
testcase_11 AC 62 ms
66,432 KB
testcase_12 AC 64 ms
67,328 KB
testcase_13 AC 60 ms
65,664 KB
testcase_14 AC 64 ms
67,328 KB
testcase_15 AC 137 ms
79,232 KB
testcase_16 AC 449 ms
89,600 KB
testcase_17 AC 157 ms
79,488 KB
testcase_18 AC 208 ms
82,688 KB
testcase_19 AC 103 ms
77,696 KB
testcase_20 AC 421 ms
89,600 KB
testcase_21 AC 416 ms
89,600 KB
testcase_22 AC 153 ms
79,232 KB
testcase_23 AC 97 ms
76,544 KB
testcase_24 AC 448 ms
89,472 KB
testcase_25 AC 39 ms
51,840 KB
testcase_26 AC 312 ms
89,728 KB
testcase_27 AC 40 ms
51,584 KB
testcase_28 AC 343 ms
89,728 KB
testcase_29 AC 39 ms
51,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
info = [list(map(int, input().split())) for i in range(m)]

graph = [[0]*n for i in range(n)]
for tmp1, tmp2, cost in info:
    tmp1 -= 1
    tmp2 -= 1
    graph[tmp1][tmp2] = max(graph[tmp1][tmp2], cost)
    graph[tmp2][tmp1] = max(graph[tmp2][tmp1], cost)

# dp[subset][j] := すでにsubsetの集合を訪れていて、最後に訪問したのがjのときの最大値
dp = [[0]*n for i in range(2**n)]
for subset in range(2**n):
    for j in range(n):
        if subset & 2**j != 0:
            for k in range(n):
                if subset & 2**k !=0 and graph[k][j] != 0:
                    # subsetにjとkを含んでいて、kとjは連結である
                    dp[subset][j] = max(dp[subset][j], dp[subset - 2**j][k] + graph[k][j])

ans = 0
for num in dp:
    ans = max(num + [ans])
print(ans)
0