結果

問題 No.1488 Max Score of the Tree
ユーザー hir355hir355
提出日時 2021-04-23 22:27:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 296 ms / 2,000 ms
コード長 996 bytes
コンパイル時間 183 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 142,848 KB
最終ジャッジ日時 2024-07-04 08:18:15
合計ジャッジ時間 6,042 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 278 ms
138,240 KB
testcase_01 AC 278 ms
135,156 KB
testcase_02 AC 293 ms
139,008 KB
testcase_03 AC 296 ms
141,952 KB
testcase_04 AC 292 ms
141,696 KB
testcase_05 AC 42 ms
52,608 KB
testcase_06 AC 110 ms
82,048 KB
testcase_07 AC 189 ms
108,160 KB
testcase_08 AC 150 ms
93,952 KB
testcase_09 AC 121 ms
84,736 KB
testcase_10 AC 187 ms
109,312 KB
testcase_11 AC 286 ms
142,848 KB
testcase_12 AC 51 ms
61,440 KB
testcase_13 AC 89 ms
74,260 KB
testcase_14 AC 163 ms
99,712 KB
testcase_15 AC 125 ms
85,248 KB
testcase_16 AC 62 ms
65,792 KB
testcase_17 AC 95 ms
76,416 KB
testcase_18 AC 213 ms
115,200 KB
testcase_19 AC 133 ms
91,008 KB
testcase_20 AC 86 ms
73,984 KB
testcase_21 AC 64 ms
67,840 KB
testcase_22 AC 123 ms
84,608 KB
testcase_23 AC 40 ms
52,096 KB
testcase_24 AC 38 ms
52,352 KB
testcase_25 AC 38 ms
53,120 KB
testcase_26 AC 99 ms
80,512 KB
testcase_27 AC 57 ms
64,640 KB
testcase_28 AC 76 ms
70,656 KB
testcase_29 AC 84 ms
73,472 KB
testcase_30 AC 249 ms
125,824 KB
testcase_31 AC 293 ms
142,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def tree_dfs(g, root=0):
    s = [root]
    d = [True] * len(g)
    d[root] = False
    order = []
    while s:
        p = s.pop()
        order.append(p)
        d[p] = False
        for node, _ in g[p]:
            if d[node]:
                s.append(node)
    return order

n, k = map(int, input().split())
g = [[] for _ in range(n)]
for i in range(n - 1):
    a, b, c = map(int, input().split())
    g[a - 1].append((b - 1, c))
    g[b - 1].append((a - 1, c))
order = tree_dfs(g)
d = [-1] * n
a = [0] * n
b = [0] * n
for v in order[::-1]:
    d[v] = 0
    for node, cost in g[v]:
        if d[node] != -1:
            d[v] += d[node]
            a[node] += d[node] * cost
            b[node] = cost
    if d[v] == 0:
        d[v] = 1
dp = [[0] * (k + 1) for _ in range(n + 1)]
for i in range(n):
    for j in range(k + 1):
        if j - b[i] >= 0:
            dp[i + 1][j] = max(dp[i][j - b[i]] + a[i], dp[i][j])
        else:
            dp[i + 1][j] = dp[i][j]
print(max(dp[n]) + sum(a))
0