結果

問題 No.845 最長の切符
ユーザー neko_the_shadowneko_the_shadow
提出日時 2019-07-07 17:15:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,393 ms / 3,000 ms
コード長 595 bytes
コンパイル時間 395 ms
コンパイル使用メモリ 82,180 KB
実行使用メモリ 199,560 KB
最終ジャッジ日時 2024-10-04 23:32:32
合計ジャッジ時間 9,409 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
54,916 KB
testcase_01 AC 42 ms
53,500 KB
testcase_02 AC 42 ms
54,248 KB
testcase_03 AC 42 ms
55,288 KB
testcase_04 AC 42 ms
54,436 KB
testcase_05 AC 45 ms
54,304 KB
testcase_06 AC 42 ms
54,088 KB
testcase_07 AC 43 ms
54,272 KB
testcase_08 AC 59 ms
66,732 KB
testcase_09 AC 48 ms
60,316 KB
testcase_10 AC 97 ms
78,232 KB
testcase_11 AC 65 ms
70,668 KB
testcase_12 AC 83 ms
76,740 KB
testcase_13 AC 60 ms
66,820 KB
testcase_14 AC 59 ms
67,712 KB
testcase_15 AC 299 ms
93,516 KB
testcase_16 AC 1,385 ms
197,960 KB
testcase_17 AC 319 ms
92,180 KB
testcase_18 AC 640 ms
128,832 KB
testcase_19 AC 175 ms
84,740 KB
testcase_20 AC 1,320 ms
199,560 KB
testcase_21 AC 1,033 ms
194,520 KB
testcase_22 AC 318 ms
92,624 KB
testcase_23 AC 126 ms
80,376 KB
testcase_24 AC 1,393 ms
197,940 KB
testcase_25 AC 42 ms
55,012 KB
testcase_26 AC 43 ms
53,740 KB
testcase_27 AC 42 ms
55,520 KB
testcase_28 AC 52 ms
63,364 KB
testcase_29 AC 42 ms
54,852 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections

n, m = map(int, input().split())
d = [[-1] * n for _ in range(n)]
for _ in range(m):
    a, b, c = map(int, input().split())
    a -= 1
    b -= 1
    d[a][b] = d[b][a] = max(d[a][b], c)

cache = {}
def f(current, history):
    ky = (current, history)
    if ky in cache:
        return cache[ky]
    
    ans = 0
    for nxt in range(n):
        if history & (1 << nxt) == 0 and d[current][nxt] > 0:
            ans = max(ans, f(nxt, history | (1 << current)) + d[current][nxt])
    cache[ky] = ans
    return ans

ans = max(f(current, 0) for current in range(n))
print(ans)
0