結果

問題 No.1488 Max Score of the Tree
ユーザー 👑 rin204rin204
提出日時 2022-01-27 20:53:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 91 ms / 2,000 ms
コード長 731 bytes
コンパイル時間 389 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 61,312 KB
最終ジャッジ日時 2024-06-07 18:09:52
合計ジャッジ時間 3,600 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 79 ms
60,928 KB
testcase_01 AC 80 ms
60,672 KB
testcase_02 AC 71 ms
60,928 KB
testcase_03 AC 87 ms
61,056 KB
testcase_04 AC 86 ms
61,184 KB
testcase_05 AC 40 ms
52,224 KB
testcase_06 AC 55 ms
60,544 KB
testcase_07 AC 68 ms
60,672 KB
testcase_08 AC 54 ms
60,672 KB
testcase_09 AC 58 ms
60,672 KB
testcase_10 AC 65 ms
60,928 KB
testcase_11 AC 85 ms
60,928 KB
testcase_12 AC 42 ms
58,240 KB
testcase_13 AC 52 ms
59,904 KB
testcase_14 AC 63 ms
60,544 KB
testcase_15 AC 57 ms
60,416 KB
testcase_16 AC 47 ms
59,904 KB
testcase_17 AC 52 ms
60,544 KB
testcase_18 AC 72 ms
60,672 KB
testcase_19 AC 59 ms
60,416 KB
testcase_20 AC 51 ms
59,520 KB
testcase_21 AC 49 ms
60,416 KB
testcase_22 AC 60 ms
60,288 KB
testcase_23 AC 38 ms
52,224 KB
testcase_24 AC 39 ms
52,096 KB
testcase_25 AC 40 ms
52,096 KB
testcase_26 AC 53 ms
60,416 KB
testcase_27 AC 51 ms
59,776 KB
testcase_28 AC 49 ms
60,160 KB
testcase_29 AC 51 ms
60,416 KB
testcase_30 AC 77 ms
61,056 KB
testcase_31 AC 91 ms
61,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(int, input().split())
edges = [[] for _ in range(n)]
for _ in range(n - 1):
    a, b, c = map(int, input().split())
    a -= 1
    b -= 1
    edges[a].append((b, c))
    edges[b].append((a, c))
    
wv = []
ans = 0

def dfs(pos, bpos, cc):
    if len(edges[pos]) == 1:
        ret = 1
        if pos != 0:
            global ans
            ans += cc
        
    else:
        ret = 0
    for npos, c in edges[pos]:
        if npos == bpos:
            continue
        tmp = dfs(npos, pos, cc + c)
        wv.append((c, c * tmp))
        ret += tmp
    return ret
    
dfs(0, -1, 0)

dp = [0] * (k + 1)
for w, v in wv:
    for i in range(k, w - 1, -1):
        dp[i] = max(dp[i], dp[i - w] + v)
print(dp[-1] + ans)



0