結果

問題 No.1488 Max Score of the Tree
ユーザー H20H20
提出日時 2021-04-23 23:01:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 110 ms / 2,000 ms
コード長 754 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 81,964 KB
実行使用メモリ 76,540 KB
最終ジャッジ日時 2024-07-04 08:38:30
合計ジャッジ時間 3,267 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 80 ms
76,352 KB
testcase_01 AC 110 ms
76,408 KB
testcase_02 AC 104 ms
76,080 KB
testcase_03 AC 98 ms
76,048 KB
testcase_04 AC 110 ms
76,008 KB
testcase_05 AC 39 ms
52,872 KB
testcase_06 AC 57 ms
76,052 KB
testcase_07 AC 73 ms
75,984 KB
testcase_08 AC 60 ms
76,208 KB
testcase_09 AC 72 ms
75,648 KB
testcase_10 AC 69 ms
76,436 KB
testcase_11 AC 104 ms
76,452 KB
testcase_12 AC 42 ms
58,788 KB
testcase_13 AC 61 ms
73,800 KB
testcase_14 AC 68 ms
76,208 KB
testcase_15 AC 62 ms
75,868 KB
testcase_16 AC 44 ms
62,276 KB
testcase_17 AC 58 ms
75,592 KB
testcase_18 AC 78 ms
75,920 KB
testcase_19 AC 63 ms
76,136 KB
testcase_20 AC 54 ms
73,504 KB
testcase_21 AC 45 ms
64,024 KB
testcase_22 AC 63 ms
75,576 KB
testcase_23 AC 38 ms
52,372 KB
testcase_24 AC 38 ms
53,212 KB
testcase_25 AC 38 ms
53,792 KB
testcase_26 AC 57 ms
75,876 KB
testcase_27 AC 46 ms
63,220 KB
testcase_28 AC 50 ms
67,732 KB
testcase_29 AC 54 ms
72,580 KB
testcase_30 AC 73 ms
76,088 KB
testcase_31 AC 101 ms
76,540 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K = map(int, input().split())
L = [0]*(N-1)
C = [0]*(N-1)
KI = []
d = {}
for i in range(N):
    KI.append([])

for i in range(N-1):
    a,b,c=map(int, input().split())
    KI[a-1].append(b-1)
    KI[b-1].append(a-1)
    d[(a-1,b-1)]=i
    d[(b-1,a-1)]=i
    C[i]=c

def dfs(p,pre,no):
    if len(KI[p])==1 and p!=0:
        for n in no:
            L[d[n]]+=1

    else:
        for ki in KI[p]:
            if pre==ki:
                continue    
            dfs(ki,p,no+[(p,ki)])

dfs(0,-1,[])
ans = 0
for i in range(N-1):
    ans+=L[i]*C[i]

DP = [-1]*(K+1)
DP[0] = 0
for i in range(N-1):
    for j in reversed(range(max(0,K+1-C[i]))):
        if DP[j]>=0 and DP[j+C[i]]<DP[j]+C[i]*L[i]:
            DP[j+C[i]] = DP[j]+C[i]*L[i]

print(ans+max(DP))
0