結果

問題 No.1488 Max Score of the Tree
ユーザー ああいいああいい
提出日時 2021-12-28 21:07:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 254 ms / 2,000 ms
コード長 920 bytes
コンパイル時間 255 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 144,256 KB
最終ジャッジ日時 2024-10-02 15:19:01
合計ジャッジ時間 5,989 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 238 ms
140,672 KB
testcase_01 AC 236 ms
136,320 KB
testcase_02 AC 254 ms
141,568 KB
testcase_03 AC 248 ms
141,056 KB
testcase_04 AC 254 ms
144,256 KB
testcase_05 AC 40 ms
52,352 KB
testcase_06 AC 98 ms
82,176 KB
testcase_07 AC 160 ms
108,416 KB
testcase_08 AC 123 ms
93,568 KB
testcase_09 AC 112 ms
85,504 KB
testcase_10 AC 161 ms
109,056 KB
testcase_11 AC 246 ms
142,336 KB
testcase_12 AC 42 ms
56,832 KB
testcase_13 AC 104 ms
86,656 KB
testcase_14 AC 150 ms
102,656 KB
testcase_15 AC 109 ms
85,760 KB
testcase_16 AC 71 ms
69,504 KB
testcase_17 AC 96 ms
80,128 KB
testcase_18 AC 184 ms
116,992 KB
testcase_19 AC 133 ms
94,336 KB
testcase_20 AC 93 ms
77,440 KB
testcase_21 AC 67 ms
68,096 KB
testcase_22 AC 116 ms
88,320 KB
testcase_23 AC 40 ms
52,352 KB
testcase_24 AC 39 ms
52,096 KB
testcase_25 AC 41 ms
52,352 KB
testcase_26 AC 98 ms
81,536 KB
testcase_27 AC 67 ms
67,584 KB
testcase_28 AC 76 ms
72,832 KB
testcase_29 AC 87 ms
76,032 KB
testcase_30 AC 207 ms
127,232 KB
testcase_31 AC 254 ms
143,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

node = [[0] * 2 for _ in range(N + 1)]
edge = []
score = 0
def tansaku(now = 1,parent = 0):
    global score
    node[now][0] = parent
    if now != 1 and len(G[now]) == 1:
        node[now][1] = 1
        return 1
    for v,c in G[now]:
        if v != parent:
            t = tansaku(v,now)
            node[now][1] += t
            edge.append((c,t))
            score += c * t
    return node[now][1]
tansaku()
dp = [[0] * (K + 1) for _ in range(N-1)]
dp[0][edge[0][0]] = edge[0][1] * edge[0][0]
for i in range(1,N-1):
    c,t = edge[i]
    for j in range(K + 1):
        dp[i][j] = dp[i-1][j]
        if j - c >= 0:
            if dp[i][j] < dp[i-1][j-c] + c * t:
                dp[i][j] = dp[i-1][j-c] + c * t
m = max(dp[N-2])
print(m + score)
0