結果

問題 No.1488 Max Score of the Tree
ユーザー Kiri8128Kiri8128
提出日時 2021-04-23 23:35:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 91 ms / 2,000 ms
コード長 761 bytes
コンパイル時間 178 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 63,488 KB
最終ジャッジ日時 2024-07-04 08:48:43
合計ジャッジ時間 3,203 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 80 ms
62,848 KB
testcase_01 AC 82 ms
62,848 KB
testcase_02 AC 87 ms
62,848 KB
testcase_03 AC 84 ms
63,104 KB
testcase_04 AC 87 ms
62,720 KB
testcase_05 AC 46 ms
54,528 KB
testcase_06 AC 58 ms
62,208 KB
testcase_07 AC 72 ms
62,720 KB
testcase_08 AC 64 ms
62,592 KB
testcase_09 AC 65 ms
62,080 KB
testcase_10 AC 69 ms
63,104 KB
testcase_11 AC 73 ms
62,848 KB
testcase_12 AC 46 ms
60,032 KB
testcase_13 AC 56 ms
62,464 KB
testcase_14 AC 62 ms
62,720 KB
testcase_15 AC 60 ms
62,720 KB
testcase_16 AC 50 ms
61,824 KB
testcase_17 AC 55 ms
62,208 KB
testcase_18 AC 66 ms
62,336 KB
testcase_19 AC 61 ms
62,080 KB
testcase_20 AC 54 ms
61,312 KB
testcase_21 AC 50 ms
62,080 KB
testcase_22 AC 59 ms
62,464 KB
testcase_23 AC 42 ms
53,760 KB
testcase_24 AC 41 ms
54,144 KB
testcase_25 AC 42 ms
53,888 KB
testcase_26 AC 56 ms
62,464 KB
testcase_27 AC 49 ms
61,824 KB
testcase_28 AC 52 ms
61,824 KB
testcase_29 AC 54 ms
61,696 KB
testcase_30 AC 78 ms
62,976 KB
testcase_31 AC 91 ms
63,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
N, K = map(int, input().split())
X = [[] for i in range(N)]
for i in range(N-1):
    x, y, c= map(int, input().split())
    x, y = x-1, y-1 # 1-indexed
    X[x].append((y, c))
    X[y].append((x, c))

P = [-1] * N
Q = deque([0])
R = []
S = [0] * N
while Q:
    i = deque.popleft(Q)
    R.append(i)
    for a, c in X[i]:
        if a != P[i]:
            P[a] = i
            S[a] = c
            X[a].remove((i, c))
            deque.append(Q, a)

T = [0] * N
ans = 0
Y = []
for i in R[1:][::-1]:
    if not len(X[i]): T[i] += 1
    Y.append((S[i], S[i] * T[i]))
    ans += S[i] * T[i]
    T[P[i]] += T[i]

Z = [0] * (K + 1)
for y, v in Y:
    for i in range(K, y-1, -1):
        Z[i] = max(Z[i], Z[i-y] + v)
ans += Z[K]
print(ans)
0