結果

問題 No.1488 Max Score of the Tree
ユーザー tamatotamato
提出日時 2021-04-23 21:43:45
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,403 bytes
コンパイル時間 345 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 148,736 KB
最終ジャッジ日時 2024-07-04 07:48:37
合計ジャッジ時間 6,471 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 264 ms
140,416 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 42 ms
54,400 KB
testcase_06 AC 119 ms
86,912 KB
testcase_07 AC 218 ms
113,664 KB
testcase_08 AC 156 ms
98,560 KB
testcase_09 AC 139 ms
90,624 KB
testcase_10 WA -
testcase_11 AC 378 ms
148,736 KB
testcase_12 AC 50 ms
62,848 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 71 ms
71,936 KB
testcase_17 WA -
testcase_18 AC 211 ms
120,576 KB
testcase_19 AC 143 ms
97,024 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 124 ms
90,496 KB
testcase_23 AC 40 ms
54,144 KB
testcase_24 AC 40 ms
54,016 KB
testcase_25 AC 41 ms
54,272 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9


def main():
    import sys
    from collections import deque
    input = sys.stdin.readline

    N, K = map(int, input().split())
    adj = [[] for _ in range(N+1)]
    for _ in range(N-1):
        a, b, c = map(int, input().split())
        adj[a].append((b, c))
        adj[b].append((a, c))

    que = deque()
    que.append(1)
    seen = [-1] * (N+1)
    seen[1] = 0
    par = [None] * (N+1)
    child = [[] for _ in range(N+1)]
    seq = []
    depth = [0] * (N+1)
    while que:
        v = que.popleft()
        seq.append(v)
        for u, c in adj[v]:
            if seen[u] == -1:
                seen[u] = seen[v] + 1
                par[u] = (v, c)
                child[v].append(u)
                que.append(u)
                depth[u] = depth[v] + c
    seq.reverse()

    D = 0
    for v in seq:
        if child[v]:
            continue
        D += depth[v]

    dp = [[D] * (K+1) for _ in range(N+1)]
    L = [0] * (N+1)
    for v in seq:
        if not child[v]:
            L[v] = 1
        else:
            for u in child[v]:
                L[v] += L[u]
        if v != 1:
            p, c = par[v]
            for j in range(K+1):
                dp[p][j] = max(dp[p][j], dp[v][j])
                if j + c <= K:
                    dp[p][j+c] = max(dp[p][j+c], dp[v][j] + c * L[v])
    print(max(dp[1]))


if __name__ == '__main__':
    main()
0