結果

問題 No.1488 Max Score of the Tree
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2022-09-01 21:47:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 174 ms / 2,000 ms
コード長 1,036 bytes
コンパイル時間 303 ms
コンパイル使用メモリ 82,192 KB
実行使用メモリ 73,724 KB
最終ジャッジ日時 2024-11-14 13:38:29
合計ジャッジ時間 4,772 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 162 ms
71,872 KB
testcase_01 AC 160 ms
72,424 KB
testcase_02 AC 166 ms
72,296 KB
testcase_03 AC 165 ms
71,740 KB
testcase_04 AC 166 ms
71,192 KB
testcase_05 AC 39 ms
53,988 KB
testcase_06 AC 83 ms
69,632 KB
testcase_07 AC 121 ms
72,020 KB
testcase_08 AC 99 ms
70,076 KB
testcase_09 AC 86 ms
67,528 KB
testcase_10 AC 122 ms
71,560 KB
testcase_11 AC 172 ms
73,724 KB
testcase_12 AC 47 ms
61,884 KB
testcase_13 AC 68 ms
65,484 KB
testcase_14 AC 107 ms
70,240 KB
testcase_15 AC 89 ms
68,332 KB
testcase_16 AC 59 ms
66,252 KB
testcase_17 AC 75 ms
69,296 KB
testcase_18 AC 128 ms
70,136 KB
testcase_19 AC 97 ms
70,948 KB
testcase_20 AC 70 ms
66,264 KB
testcase_21 AC 62 ms
69,176 KB
testcase_22 AC 85 ms
66,592 KB
testcase_23 AC 38 ms
52,572 KB
testcase_24 AC 39 ms
53,100 KB
testcase_25 AC 39 ms
53,104 KB
testcase_26 AC 81 ms
71,452 KB
testcase_27 AC 54 ms
65,508 KB
testcase_28 AC 66 ms
65,904 KB
testcase_29 AC 70 ms
65,880 KB
testcase_30 AC 147 ms
72,940 KB
testcase_31 AC 174 ms
72,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K = map(int,input().split())
e = [[] for _ in range(N)]
edge = dict()
I = 0
for _ in range(N-1):
    a,b,c = map(int,input().split())
    a -= 1
    b -= 1
    e[a].append(b)
    e[b].append(a)
    edge[(a,b)]=c
    edge[(b,a)]=c
    
depth = [-1]*N
leaves = [-1]*N
depth[0] = 0
for i in range(1,N):
    if len(e[i])==1:
        leaves[i] = 1
def dfs(x):
    
    if leaves[x] !=-1:
        return leaves[x]
    
    tmp = 0
    for ix in e[x]:
        if depth[ix]==-1:
            depth[ix] = depth[x]+1
    
    for ix in e[x]:
        if depth[ix]>depth[x]:
            tmp += dfs(ix)
            
    leaves[x] = tmp
    return tmp
    
dfs(0)
E = []

for i in range(N):
    
    for j in e[i]:
        
        if depth[j]<depth[i]:
            c = edge[(i,j)]
            E.append((c,c*leaves[i]))
            I += c*leaves[i]
            break

N = len(E)
dp = [0]*(K+2)
for i in range(N):
    a,b = E[i]
    for j in range(K,-1,-1):
        dp[min(j+a,K+1)] = max(dp[j] + b,dp[min(j+a,K+1)])

print(max(dp[:K+1])+I)
    
    
0