結果

問題 No.845 最長の切符
ユーザー convexineqconvexineq
提出日時 2019-06-29 01:50:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 368 ms / 3,000 ms
コード長 818 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 82,532 KB
実行使用メモリ 89,840 KB
最終ジャッジ日時 2024-07-02 05:21:32
合計ジャッジ時間 4,365 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,928 KB
testcase_01 AC 42 ms
59,680 KB
testcase_02 AC 47 ms
61,872 KB
testcase_03 AC 39 ms
52,348 KB
testcase_04 AC 40 ms
52,944 KB
testcase_05 AC 39 ms
53,624 KB
testcase_06 AC 40 ms
52,880 KB
testcase_07 AC 40 ms
54,072 KB
testcase_08 AC 61 ms
67,984 KB
testcase_09 AC 47 ms
59,296 KB
testcase_10 AC 73 ms
71,792 KB
testcase_11 AC 58 ms
66,312 KB
testcase_12 AC 67 ms
69,700 KB
testcase_13 AC 58 ms
65,112 KB
testcase_14 AC 63 ms
66,816 KB
testcase_15 AC 118 ms
79,636 KB
testcase_16 AC 362 ms
89,840 KB
testcase_17 AC 142 ms
79,892 KB
testcase_18 AC 181 ms
83,152 KB
testcase_19 AC 98 ms
78,072 KB
testcase_20 AC 368 ms
89,636 KB
testcase_21 AC 275 ms
89,632 KB
testcase_22 AC 125 ms
79,660 KB
testcase_23 AC 89 ms
77,248 KB
testcase_24 AC 366 ms
89,776 KB
testcase_25 AC 42 ms
53,436 KB
testcase_26 AC 104 ms
89,416 KB
testcase_27 AC 38 ms
52,744 KB
testcase_28 AC 113 ms
89,776 KB
testcase_29 AC 42 ms
53,816 KB
権限があれば一括ダウンロードができます

ソースコード

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