結果

問題 No.845 最長の切符
ユーザー convexineqconvexineq
提出日時 2019-06-29 01:49:45
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 818 bytes
コンパイル時間 91 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 43,168 KB
最終ジャッジ日時 2024-07-02 05:21:17
合計ジャッジ時間 6,375 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
17,824 KB
testcase_01 AC 36 ms
10,752 KB
testcase_02 AC 38 ms
10,880 KB
testcase_03 AC 32 ms
10,752 KB
testcase_04 AC 33 ms
10,752 KB
testcase_05 AC 31 ms
10,880 KB
testcase_06 AC 32 ms
10,880 KB
testcase_07 AC 32 ms
10,880 KB
testcase_08 AC 37 ms
11,008 KB
testcase_09 AC 33 ms
10,880 KB
testcase_10 AC 93 ms
11,392 KB
testcase_11 AC 36 ms
10,880 KB
testcase_12 AC 48 ms
11,008 KB
testcase_13 AC 34 ms
10,880 KB
testcase_14 AC 39 ms
10,880 KB
testcase_15 AC 986 ms
17,408 KB
testcase_16 TLE -
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 #

# coding: utf-8
# Your code here!


n,m = [int(i) for i in input().split()]
lrp = [[int(i) for i in input().split()] for _ in range(m)]
g = [[1e9]*n for _ in range(n)]
for l,r,p in lrp:
    if g[l-1][r-1] == 1e9: g[l-1][r-1] = p
    else: g[l-1][r-1] = max(g[l-1][r-1],p)
    if g[r-1][l-1] == 1e9: g[r-1][l-1] = p
    else: g[r-1][l-1] = max(g[r-1][l-1],p)

L = 1<<(n)
dp = [[-1]*16 for _ in range(L)]
#dp[i][j]: 位置i, last=j

for i in range(n): dp[1<<i][i] = 0

for i in range(L):
    for now in range(n):
        if i & (1 << now) == 0: continue
        if dp[i][now] < 0: continue
        for j in range(n):
            if i&(1 << j) != 0: continue
            if g[j][now] == 1e9: continue
            dp[i^(1 << j)][j] = max(dp[i^(1 << j)][j], dp[i][now] + g[j][now])
    

print(max(max(i) for i in dp))




0