結果

問題 No.845 最長の切符
ユーザー stngstng
提出日時 2022-07-16 18:45:07
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,124 bytes
コンパイル時間 241 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 100,992 KB
最終ジャッジ日時 2024-06-28 18:42:24
合計ジャッジ時間 5,684 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,480 KB
testcase_01 AC 48 ms
62,976 KB
testcase_02 AC 54 ms
67,968 KB
testcase_03 WA -
testcase_04 AC 41 ms
60,160 KB
testcase_05 AC 33 ms
52,352 KB
testcase_06 AC 33 ms
52,608 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 48 ms
66,048 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 32 ms
51,968 KB
testcase_26 AC 356 ms
89,728 KB
testcase_27 AC 33 ms
51,968 KB
testcase_28 AC 411 ms
89,768 KB
testcase_29 WA -
権限があれば一括ダウンロードができます

ソースコード

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] = d # s,tは0以上V-1以下なので、デクリメントの必要はない
    G[t][s] = d # 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 and S != 0: # ①
                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] # ③

ans = 0
for i in range(2**V):
    for j in range(V):
        ans = max(ans,dp[i][j])

print(ans)
0