結果

問題 No.1488 Max Score of the Tree
ユーザー monnumonnu
提出日時 2021-04-23 23:31:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 98 ms / 2,000 ms
コード長 614 bytes
コンパイル時間 218 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 65,220 KB
最終ジャッジ日時 2024-07-04 08:48:12
合計ジャッジ時間 3,283 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 79 ms
64,276 KB
testcase_01 AC 91 ms
64,548 KB
testcase_02 AC 98 ms
64,920 KB
testcase_03 AC 96 ms
63,168 KB
testcase_04 AC 85 ms
65,132 KB
testcase_05 AC 39 ms
53,888 KB
testcase_06 AC 55 ms
61,916 KB
testcase_07 AC 70 ms
64,036 KB
testcase_08 AC 56 ms
62,108 KB
testcase_09 AC 61 ms
63,128 KB
testcase_10 AC 69 ms
62,992 KB
testcase_11 AC 88 ms
64,420 KB
testcase_12 AC 43 ms
58,772 KB
testcase_13 AC 58 ms
65,220 KB
testcase_14 AC 67 ms
64,248 KB
testcase_15 AC 62 ms
62,396 KB
testcase_16 AC 50 ms
63,400 KB
testcase_17 AC 60 ms
64,292 KB
testcase_18 AC 78 ms
63,364 KB
testcase_19 AC 66 ms
64,636 KB
testcase_20 AC 56 ms
62,908 KB
testcase_21 AC 52 ms
63,212 KB
testcase_22 AC 62 ms
64,488 KB
testcase_23 AC 37 ms
53,796 KB
testcase_24 AC 38 ms
52,568 KB
testcase_25 AC 38 ms
53,424 KB
testcase_26 AC 56 ms
63,300 KB
testcase_27 AC 49 ms
62,336 KB
testcase_28 AC 53 ms
62,596 KB
testcase_29 AC 53 ms
62,888 KB
testcase_30 AC 80 ms
63,836 KB
testcase_31 AC 93 ms
64,604 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def dfs(G,v,p,sz,edge):
    cnt=0
    for nv,c in G[v]:
        if nv==p:
            continue
        cnt+=1
        dfs(G,nv,v,sz,edge)
        sz[v]+=sz[nv]
        edge.append([c,sz[nv]])
    if cnt==0:
        sz[v]=1


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

sz=[0]*N
edge=[]
dfs(G,0,-1,sz,edge)
ans=0
dp=[0]*(K+1)
for e,cnt in edge:
    ans+=e*cnt
    for i in range(K,-1,-1):
        if i-e<0:
            break;
        dp[i]=max(dp[i],dp[i-e]+cnt*e)
print(ans+max(dp))
0