結果

問題 No.845 最長の切符
ユーザー stngstng
提出日時 2022-07-16 18:51:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 624 ms / 3,000 ms
コード長 1,159 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 100,992 KB
最終ジャッジ日時 2024-06-28 18:49:57
合計ジャッジ時間 6,134 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,968 KB
testcase_01 AC 55 ms
63,232 KB
testcase_02 AC 66 ms
67,712 KB
testcase_03 AC 39 ms
51,840 KB
testcase_04 AC 47 ms
60,288 KB
testcase_05 AC 40 ms
52,224 KB
testcase_06 AC 38 ms
52,352 KB
testcase_07 AC 37 ms
52,480 KB
testcase_08 AC 95 ms
76,544 KB
testcase_09 AC 59 ms
65,664 KB
testcase_10 AC 108 ms
76,800 KB
testcase_11 AC 65 ms
66,688 KB
testcase_12 AC 99 ms
76,688 KB
testcase_13 AC 68 ms
68,992 KB
testcase_14 AC 93 ms
76,800 KB
testcase_15 AC 177 ms
82,432 KB
testcase_16 AC 525 ms
100,736 KB
testcase_17 AC 144 ms
79,616 KB
testcase_18 AC 251 ms
88,192 KB
testcase_19 AC 117 ms
77,440 KB
testcase_20 AC 561 ms
100,648 KB
testcase_21 AC 624 ms
100,992 KB
testcase_22 AC 142 ms
79,488 KB
testcase_23 AC 102 ms
76,672 KB
testcase_24 AC 547 ms
100,608 KB
testcase_25 AC 39 ms
52,224 KB
testcase_26 AC 379 ms
89,856 KB
testcase_27 AC 39 ms
51,840 KB
testcase_28 AC 455 ms
89,728 KB
testcase_29 AC 39 ms
51,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m = map(int,input().split())
V = n
E = m

G = [[-float('inf')]*V for i in range(V)] # 存在しないパスはinfになるように、最初にすべてinfにしておく
for i in range(E):
    s,t,d = map(int,input().split())
    s -= 1
    t -= 1
    G[s][t] = max(d,G[s][t]) # s,tは0以上V-1以下なので、デクリメントの必要はない
    G[t][s] = max(d,G[s][t]) # s,tは0以上V-1以下なので、デクリメントの必要はない
dp = [[-float('inf')]*V for i in range(2**V)] # dpの長さは2^V必要

for i in range(V):
    dp[2**i][i] = 0

for S in range(2**V): # Sは集合をbitで表している
    for v in range(V): # vは配られる側の要素を表している
        for u in range(V): # uは配る側の要素を表している
            if not (S >> u) & 1: # ①
                continue
            if (S >> v) & 1 == 0: # ②
                if dp[S][u] + G[u][v] > dp[S | (1 << v)][v]:
                    #print(dp[S][u],u,v)
                    dp[S | (1 << v)][v] = dp[S][u] + G[u][v] # ③
#print(dp)
#print(G)
ans = 0
for i in range(2**V):
    for j in range(V):
        ans = max(ans,dp[i][j])

print(ans)
0