結果

問題 No.845 最長の切符
ユーザー H3PO4H3PO4
提出日時 2021-02-23 10:08:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,233 ms / 3,000 ms
コード長 541 bytes
コンパイル時間 140 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 84,556 KB
最終ジャッジ日時 2024-09-22 06:14:17
合計ジャッジ時間 6,308 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,380 KB
testcase_01 AC 40 ms
53,536 KB
testcase_02 AC 54 ms
65,328 KB
testcase_03 AC 37 ms
52,900 KB
testcase_04 AC 37 ms
53,080 KB
testcase_05 AC 36 ms
52,836 KB
testcase_06 AC 39 ms
54,076 KB
testcase_07 AC 37 ms
53,204 KB
testcase_08 AC 54 ms
64,752 KB
testcase_09 AC 42 ms
59,428 KB
testcase_10 AC 59 ms
65,492 KB
testcase_11 AC 53 ms
64,236 KB
testcase_12 AC 56 ms
65,572 KB
testcase_13 AC 50 ms
63,904 KB
testcase_14 AC 56 ms
66,792 KB
testcase_15 AC 115 ms
72,056 KB
testcase_16 AC 1,233 ms
84,408 KB
testcase_17 AC 372 ms
74,632 KB
testcase_18 AC 248 ms
77,140 KB
testcase_19 AC 105 ms
69,412 KB
testcase_20 AC 349 ms
84,260 KB
testcase_21 AC 225 ms
84,556 KB
testcase_22 AC 325 ms
74,500 KB
testcase_23 AC 115 ms
69,032 KB
testcase_24 AC 1,050 ms
84,124 KB
testcase_25 AC 35 ms
53,008 KB
testcase_26 AC 77 ms
75,788 KB
testcase_27 AC 37 ms
54,100 KB
testcase_28 AC 104 ms
84,380 KB
testcase_29 AC 36 ms
53,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

dp = [[0] * (1 << N) for _ in range(N)]
for b in range(1, 1 << N):
    for v in range(N):
        if b >> v & 1:
            dp_vb = dp[v][b]
            for x, c in G[v]:
                if b >> x & 1:
                    continue
                dp[x][b | (1 << x)] = max(dp[x][b | (1 << x)], dp_vb + c)
ans = max(max(dpx) for dpx in dp)
print(ans)
0