結果

問題 No.845 最長の切符
ユーザー neko_the_shadowneko_the_shadow
提出日時 2019-07-07 17:13:32
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 521 bytes
コンパイル時間 123 ms
コンパイル使用メモリ 82,476 KB
実行使用メモリ 93,528 KB
最終ジャッジ日時 2024-10-04 23:30:27
合計ジャッジ時間 6,248 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
56,940 KB
testcase_01 AC 40 ms
55,580 KB
testcase_02 AC 40 ms
56,104 KB
testcase_03 AC 38 ms
55,400 KB
testcase_04 AC 37 ms
54,872 KB
testcase_05 AC 38 ms
56,008 KB
testcase_06 AC 38 ms
55,664 KB
testcase_07 AC 40 ms
56,168 KB
testcase_08 AC 84 ms
77,224 KB
testcase_09 AC 52 ms
66,532 KB
testcase_10 AC 598 ms
78,556 KB
testcase_11 AC 106 ms
77,364 KB
testcase_12 AC 123 ms
77,836 KB
testcase_13 AC 90 ms
77,136 KB
testcase_14 AC 73 ms
76,776 KB
testcase_15 TLE -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
権限があれば一括ダウンロードができます

ソースコード

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()
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