結果

問題 No.845 最長の切符
ユーザー vwxyzvwxyz
提出日時 2024-04-07 20:28:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,360 ms / 3,000 ms
コード長 597 bytes
コンパイル時間 218 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 89,988 KB
最終ジャッジ日時 2024-10-01 04:42:40
合計ジャッジ時間 7,027 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,740 KB
testcase_01 AC 41 ms
53,352 KB
testcase_02 AC 71 ms
71,912 KB
testcase_03 AC 39 ms
53,352 KB
testcase_04 AC 39 ms
53,040 KB
testcase_05 AC 41 ms
53,152 KB
testcase_06 AC 39 ms
52,752 KB
testcase_07 AC 40 ms
53,264 KB
testcase_08 AC 59 ms
66,312 KB
testcase_09 AC 46 ms
59,512 KB
testcase_10 AC 65 ms
68,840 KB
testcase_11 AC 57 ms
65,236 KB
testcase_12 AC 61 ms
67,504 KB
testcase_13 AC 57 ms
65,688 KB
testcase_14 AC 62 ms
68,760 KB
testcase_15 AC 137 ms
79,448 KB
testcase_16 AC 1,360 ms
89,840 KB
testcase_17 AC 394 ms
79,332 KB
testcase_18 AC 283 ms
82,756 KB
testcase_19 AC 137 ms
78,072 KB
testcase_20 AC 424 ms
89,988 KB
testcase_21 AC 278 ms
89,800 KB
testcase_22 AC 351 ms
79,400 KB
testcase_23 AC 130 ms
74,236 KB
testcase_24 AC 1,137 ms
89,852 KB
testcase_25 AC 39 ms
53,144 KB
testcase_26 AC 112 ms
89,836 KB
testcase_27 AC 39 ms
53,532 KB
testcase_28 AC 137 ms
89,964 KB
testcase_29 AC 38 ms
53,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M=map(int,input().split())
graph=[[] for x in range(N)]
for m in range(M):
    a,b,c=map(int,input().split())
    a-=1;b-=1
    graph[a].append((b,c))
    graph[b].append((a,c))
inf=1<<30
dp=[[-inf]*N for bit in range(1<<N)]
for bit in range(1,1<<N):
    for x in range(N):
        if bit==1<<x:
            dp[bit][x]=0
            break
    else:
        for y in range(N):
            if bit&1<<y:
                for x,c in graph[y]:
                    if bit&1<<x:
                        dp[bit][y]=max(dp[bit][y],dp[bit^1<<y][x]+c)
ans=max(max(dp[bit]) for bit in range(1<<N))
print(ans)
0