結果

問題 No.845 最長の切符
ユーザー mkawa2mkawa2
提出日時 2019-07-11 21:52:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,089 ms / 3,000 ms
コード長 743 bytes
コンパイル時間 193 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 84,992 KB
最終ジャッジ日時 2024-11-08 11:01:54
合計ジャッジ時間 9,453 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
53,632 KB
testcase_01 AC 47 ms
53,760 KB
testcase_02 AC 48 ms
53,888 KB
testcase_03 AC 47 ms
53,376 KB
testcase_04 AC 47 ms
53,504 KB
testcase_05 AC 47 ms
53,376 KB
testcase_06 AC 47 ms
53,760 KB
testcase_07 AC 47 ms
53,632 KB
testcase_08 AC 67 ms
64,512 KB
testcase_09 AC 48 ms
53,632 KB
testcase_10 AC 108 ms
76,672 KB
testcase_11 AC 68 ms
65,920 KB
testcase_12 AC 81 ms
70,784 KB
testcase_13 AC 68 ms
65,408 KB
testcase_14 AC 66 ms
65,152 KB
testcase_15 AC 208 ms
78,208 KB
testcase_16 AC 2,089 ms
84,992 KB
testcase_17 AC 563 ms
78,464 KB
testcase_18 AC 442 ms
80,384 KB
testcase_19 AC 182 ms
77,440 KB
testcase_20 AC 643 ms
84,864 KB
testcase_21 AC 519 ms
84,736 KB
testcase_22 AC 493 ms
78,080 KB
testcase_23 AC 184 ms
76,544 KB
testcase_24 AC 1,729 ms
84,608 KB
testcase_25 AC 47 ms
53,376 KB
testcase_26 AC 53 ms
61,824 KB
testcase_27 AC 47 ms
53,376 KB
testcase_28 AC 57 ms
61,952 KB
testcase_29 AC 49 ms
53,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
import sys

sys.setrecursionlimit(10 ** 6)

def dfs(i, s=0, d=0):
    s += 2 ** i
#    print(i,format(s,"b"),d,memo)
    if memo[i][s] > -1:
        return memo[i][s]+d
    memo[i][s]=-d
    mx = d
    for ki in to[i]:
        if (s >> ki) & 1: continue
        tmp = dfs(ki, s, d + ds[i][ki])
        if tmp > mx:
            mx = tmp
    memo[i][s] += mx
    return mx

n, m = map(int, input().split())
to = defaultdict(list)
ds = [[-1] * n for _ in range(n)]
memo = [[-1] * (2 ** n) for _ in range(n)]
for _ in range(m):
    a, b, c = map(int, input().split())
    a -= 1
    b -= 1
    to[a].append(b)
    to[b].append(a)
    ds[a][b] = ds[b][a] = max(ds[a][b], c)

print(max(dfs(i) for i in range(n)))
0