結果

問題 No.1488 Max Score of the Tree
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2021-04-23 21:45:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 91 ms / 2,000 ms
コード長 811 bytes
コンパイル時間 140 ms
コンパイル使用メモリ 82,468 KB
実行使用メモリ 63,360 KB
最終ジャッジ日時 2024-07-04 07:50:16
合計ジャッジ時間 3,028 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 87 ms
61,184 KB
testcase_01 AC 84 ms
62,080 KB
testcase_02 AC 74 ms
61,568 KB
testcase_03 AC 86 ms
61,568 KB
testcase_04 AC 89 ms
61,824 KB
testcase_05 AC 37 ms
52,608 KB
testcase_06 AC 55 ms
61,312 KB
testcase_07 AC 70 ms
62,592 KB
testcase_08 AC 55 ms
61,824 KB
testcase_09 AC 58 ms
61,824 KB
testcase_10 AC 66 ms
62,336 KB
testcase_11 AC 86 ms
63,360 KB
testcase_12 AC 41 ms
58,752 KB
testcase_13 AC 53 ms
61,312 KB
testcase_14 AC 64 ms
61,184 KB
testcase_15 AC 57 ms
61,184 KB
testcase_16 AC 45 ms
61,056 KB
testcase_17 AC 52 ms
61,568 KB
testcase_18 AC 67 ms
61,440 KB
testcase_19 AC 58 ms
60,800 KB
testcase_20 AC 76 ms
60,544 KB
testcase_21 AC 48 ms
60,672 KB
testcase_22 AC 56 ms
60,800 KB
testcase_23 AC 36 ms
52,480 KB
testcase_24 AC 37 ms
51,968 KB
testcase_25 AC 37 ms
52,736 KB
testcase_26 AC 53 ms
61,568 KB
testcase_27 AC 46 ms
60,544 KB
testcase_28 AC 51 ms
61,312 KB
testcase_29 AC 53 ms
61,440 KB
testcase_30 AC 77 ms
61,696 KB
testcase_31 AC 91 ms
62,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

"""

ナップザック問題やな
辺が99個しかない



"""

import sys
from sys import stdin
import math

ans = 0
elis = []

def dfs(v,p):

    global ans
    global elis

    vsum = 0
    if v != p and len(lis[v]) == 1:
        return 1
    
    for nex,cost in lis[v]:
        if nex != p:

            cat = dfs(nex,v)
            elis.append( (cost,cost*cat) )
            vsum += cat
            ans += cost * cat

    return vsum

N,K = map(int,stdin.readline().split())

lis = [ [] for i in range(N)]
for i in range(N-1):

    a,b,c = map(int,stdin.readline().split())
    a -= 1
    b -= 1

    lis[a].append( (b,c) )
    lis[b].append( (a,c) )

dfs(0,0)

dp = [0] * (K+1)
for cost,r in elis:
    for i in range(K-cost,-1,-1):
        dp[i+cost] = max(dp[i+cost],dp[i]+r)

print (ans + max(dp))
0