結果

問題 No.1488 Max Score of the Tree
ユーザー sgswsgsw
提出日時 2021-04-30 02:33:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 988 ms / 2,000 ms
コード長 1,775 bytes
コンパイル時間 777 ms
コンパイル使用メモリ 82,312 KB
実行使用メモリ 245,120 KB
最終ジャッジ日時 2024-07-18 02:26:23
合計ジャッジ時間 15,800 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 813 ms
210,928 KB
testcase_01 AC 850 ms
209,728 KB
testcase_02 AC 873 ms
215,108 KB
testcase_03 AC 903 ms
224,256 KB
testcase_04 AC 872 ms
207,500 KB
testcase_05 AC 38 ms
52,736 KB
testcase_06 AC 282 ms
129,988 KB
testcase_07 AC 580 ms
177,608 KB
testcase_08 AC 387 ms
140,384 KB
testcase_09 AC 313 ms
124,416 KB
testcase_10 AC 568 ms
182,272 KB
testcase_11 AC 988 ms
245,120 KB
testcase_12 AC 53 ms
64,740 KB
testcase_13 AC 193 ms
98,432 KB
testcase_14 AC 477 ms
153,092 KB
testcase_15 AC 326 ms
128,440 KB
testcase_16 AC 106 ms
87,936 KB
testcase_17 AC 257 ms
127,616 KB
testcase_18 AC 707 ms
171,308 KB
testcase_19 AC 403 ms
154,880 KB
testcase_20 AC 197 ms
101,504 KB
testcase_21 AC 116 ms
87,060 KB
testcase_22 AC 305 ms
117,248 KB
testcase_23 AC 39 ms
52,864 KB
testcase_24 AC 39 ms
52,352 KB
testcase_25 AC 40 ms
53,120 KB
testcase_26 AC 276 ms
136,108 KB
testcase_27 AC 96 ms
82,688 KB
testcase_28 AC 162 ms
94,464 KB
testcase_29 AC 207 ms
104,772 KB
testcase_30 AC 727 ms
201,728 KB
testcase_31 AC 971 ms
244,452 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys


def input():
    return sys.stdin.readline().rstrip()


"""
Do not get stuck on a problem for more than 20 minutes
Just check the editorial :)
There should be something else to do insead
"""

INF = 1 << 128


def slv():
    n, k = map(int, input().split())
    g = [[]for i in range(n)]
    edge = []
    for i in range(n - 1):
        u, v, c = map(int, input().split())
        u -= 1
        v -= 1
        g[u].append((v,c))
        g[v].append((u,c))
        edge.append((u, v, c))

    visited = [INF]*(n)
    cnt = [0]*(n)
    par = [-1]*(n)

    ans = 0

    def dfs(S):
        if visited[S] == INF:
            visited[S] = 0
        for adj,c in g[S]:
            if visited[adj] == INF:
                par[adj] = S
                visited[adj] = visited[S] + c          
                dfs(adj)

        if all(visited[u] < visited[S] for u,c in g[S]):
            cnt[S] = 1
        if par[S] >= 0:
            cnt[par[S]] += cnt[S]


    dfs(0)

    for i in range(n):
        if all(visited[u] < visited[i] for u,c in g[i]):
            ans += visited[i]

    data = []

    for u, v, c in edge:
        if visited[u] < visited[v]:
            data.append((cnt[v], c))
        else:
            data.append((cnt[u], c))


    dp = [[-INF]*(k + 1) for i in range(n)]
    dp[0][0] = 0

    for i in range(1,n):
        cnt,cost = data[i - 1]
        V,cost = cnt * cost,cost
        for j in range(k + 1):
            if j + cost <= k:
                dp[i][j + cost] = max(dp[i][j + cost],dp[i - 1][j] + V)
            dp[i][j] = max(dp[i][j],dp[i - 1][j])
    ans += max(dp[n - 1][c] for c in range(k + 1))
    print(ans)
    return


def main():
    t = 1
    for i in range(t):
        slv()
    return


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