結果

問題 No.845 最長の切符
ユーザー neko_the_shadowneko_the_shadow
提出日時 2019-07-07 17:18:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,733 ms / 3,000 ms
コード長 532 bytes
コンパイル時間 1,344 ms
コンパイル使用メモリ 82,172 KB
実行使用メモリ 271,848 KB
最終ジャッジ日時 2024-10-04 23:39:06
合計ジャッジ時間 11,547 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
55,452 KB
testcase_01 AC 39 ms
55,172 KB
testcase_02 AC 39 ms
55,448 KB
testcase_03 AC 37 ms
55,428 KB
testcase_04 AC 38 ms
55,140 KB
testcase_05 AC 37 ms
54,928 KB
testcase_06 AC 38 ms
55,524 KB
testcase_07 AC 38 ms
55,204 KB
testcase_08 AC 60 ms
72,700 KB
testcase_09 AC 44 ms
62,208 KB
testcase_10 AC 96 ms
78,628 KB
testcase_11 AC 65 ms
74,380 KB
testcase_12 AC 84 ms
77,228 KB
testcase_13 AC 59 ms
71,808 KB
testcase_14 AC 59 ms
72,112 KB
testcase_15 AC 350 ms
111,416 KB
testcase_16 AC 1,733 ms
271,836 KB
testcase_17 AC 383 ms
112,568 KB
testcase_18 AC 753 ms
166,020 KB
testcase_19 AC 200 ms
91,932 KB
testcase_20 AC 1,665 ms
270,884 KB
testcase_21 AC 1,246 ms
269,248 KB
testcase_22 AC 366 ms
112,892 KB
testcase_23 AC 129 ms
82,044 KB
testcase_24 AC 1,692 ms
271,848 KB
testcase_25 AC 40 ms
55,256 KB
testcase_26 AC 38 ms
55,952 KB
testcase_27 AC 38 ms
55,052 KB
testcase_28 AC 50 ms
65,664 KB
testcase_29 AC 39 ms
55,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections, functools

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)

@functools.lru_cache(maxsize=None)
def f(current, history):
    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])
    return ans

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