結果

問題 No.845 最長の切符
ユーザー 👑 KazunKazun
提出日時 2022-02-16 03:18:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 532 ms / 3,000 ms
コード長 688 bytes
コンパイル時間 180 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 101,120 KB
最終ジャッジ日時 2024-06-29 07:11:31
合計ジャッジ時間 5,845 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,840 KB
testcase_01 AC 53 ms
61,440 KB
testcase_02 AC 76 ms
69,248 KB
testcase_03 AC 41 ms
51,840 KB
testcase_04 AC 45 ms
57,984 KB
testcase_05 AC 40 ms
51,840 KB
testcase_06 AC 41 ms
51,968 KB
testcase_07 AC 41 ms
51,968 KB
testcase_08 AC 101 ms
76,544 KB
testcase_09 AC 53 ms
61,568 KB
testcase_10 AC 120 ms
76,912 KB
testcase_11 AC 68 ms
66,432 KB
testcase_12 AC 119 ms
76,592 KB
testcase_13 AC 70 ms
68,224 KB
testcase_14 AC 110 ms
76,548 KB
testcase_15 AC 177 ms
82,688 KB
testcase_16 AC 386 ms
100,992 KB
testcase_17 AC 133 ms
79,104 KB
testcase_18 AC 212 ms
87,808 KB
testcase_19 AC 111 ms
77,440 KB
testcase_20 AC 427 ms
101,120 KB
testcase_21 AC 532 ms
100,680 KB
testcase_22 AC 132 ms
79,104 KB
testcase_23 AC 98 ms
76,928 KB
testcase_24 AC 393 ms
100,992 KB
testcase_25 AC 40 ms
51,840 KB
testcase_26 AC 291 ms
89,856 KB
testcase_27 AC 41 ms
51,968 KB
testcase_28 AC 351 ms
90,368 KB
testcase_29 AC 42 ms
51,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import product
import sys
input=sys.stdin.readline

N,M=map(int,input().split())

inf=float("inf")
length=[[0 if i==j else -inf for j in range(N)] for i in range(N)]

for _ in range(M):
    a,b,c=map(int,input().split())
    length[a-1][b-1]=length[b-1][a-1]=max(length[a-1][b-1],c)

DP=[[-inf]*N for _ in range(1<<N)]
for v in range(N):
    DP[1<<v][v]=0

for S in range(1<<N):
    for v in range(N):
        if (S>>v)&1==0:
            continue

        for w in range(N):
            if (S>>w)&1==1:
                continue

            DP[S|(1<<w)][w]=max(DP[S|(1<<w)][w], DP[S][v]+length[v][w])

Ans=-inf
for S in range(1<<N):
    Ans=max(Ans, max(DP[S]))
print(Ans)
0