結果

問題 No.1488 Max Score of the Tree
ユーザー gorugo30gorugo30
提出日時 2021-04-23 21:46:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 369 ms / 2,000 ms
コード長 1,220 bytes
コンパイル時間 168 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 142,976 KB
最終ジャッジ日時 2024-07-04 07:51:53
合計ジャッジ時間 7,030 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 344 ms
139,008 KB
testcase_01 AC 336 ms
135,808 KB
testcase_02 AC 354 ms
139,520 KB
testcase_03 AC 363 ms
142,976 KB
testcase_04 AC 363 ms
142,720 KB
testcase_05 AC 43 ms
54,656 KB
testcase_06 AC 125 ms
82,560 KB
testcase_07 AC 228 ms
108,672 KB
testcase_08 AC 170 ms
94,976 KB
testcase_09 AC 140 ms
86,272 KB
testcase_10 AC 226 ms
110,080 KB
testcase_11 AC 360 ms
142,720 KB
testcase_12 AC 51 ms
62,592 KB
testcase_13 AC 107 ms
86,972 KB
testcase_14 AC 197 ms
100,992 KB
testcase_15 AC 142 ms
86,784 KB
testcase_16 AC 66 ms
67,456 KB
testcase_17 AC 104 ms
77,440 KB
testcase_18 AC 258 ms
116,736 KB
testcase_19 AC 160 ms
92,928 KB
testcase_20 AC 96 ms
75,136 KB
testcase_21 AC 70 ms
69,268 KB
testcase_22 AC 140 ms
86,528 KB
testcase_23 AC 41 ms
54,016 KB
testcase_24 AC 40 ms
54,272 KB
testcase_25 AC 43 ms
54,272 KB
testcase_26 AC 119 ms
81,280 KB
testcase_27 AC 61 ms
66,176 KB
testcase_28 AC 83 ms
72,192 KB
testcase_29 AC 96 ms
74,240 KB
testcase_30 AC 297 ms
126,976 KB
testcase_31 AC 369 ms
142,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())
adj = [[] for i in range(N)]
E = []
for i in range(N - 1):
    a, b, c = map(int, input().split())
    a -= 1
    b -= 1
    adj[a].append((b, c))
    adj[b].append((a, c))
    E.append((a, b, c))
depth = [-1] * N
depth[0] = 0
from collections import deque
qu = deque([0])
while len(qu):
    v = qu.popleft()
    for nv, c in adj[v]:
        if depth[nv] == -1:
            depth[nv] = depth[v] + c
            qu.append(nv)
dp = [1] * N
for v in range(N):
    for nv, c in adj[v]:
        if depth[nv] > depth[v]:
            dp[v] = 0
            break
ans = sum([dp[i] * depth[i] for i in range(N)])
node = [i for i in range(N)]
node.sort(key = lambda x: depth[x], reverse = True)

for v in node:
    for nv, c in adj[v]:
        if depth[nv] < depth[v]:
            continue
        dp[v] += dp[nv]
V = []
for i in range(N - 1):
    a, b, c = E[i]
    if depth[a] > depth[b]:
        a, b = b, a
    #aが浅い
    V.append(c * dp[b])

dp = [[0] * (K + 1) for i in range(N)]
for i in range(N - 1):
    for j in range(K + 1):
        dp[i + 1][j] = dp[i][j]
        if j + E[i][2] <= K:
            dp[i + 1][j] = max(dp[i + 1][j], dp[i][j + E[i][2]] + V[i])
print(max(dp[-1]) + ans)
0