結果

問題 No.1488 Max Score of the Tree
ユーザー ayaoniayaoni
提出日時 2021-04-23 22:10:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 255 ms / 2,000 ms
コード長 1,237 bytes
コンパイル時間 206 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 147,200 KB
最終ジャッジ日時 2024-07-04 08:09:21
合計ジャッジ時間 5,915 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 211 ms
142,080 KB
testcase_01 AC 248 ms
138,880 KB
testcase_02 AC 248 ms
143,232 KB
testcase_03 AC 241 ms
146,048 KB
testcase_04 AC 255 ms
145,408 KB
testcase_05 AC 47 ms
55,552 KB
testcase_06 AC 95 ms
85,888 KB
testcase_07 AC 167 ms
111,872 KB
testcase_08 AC 127 ms
96,896 KB
testcase_09 AC 136 ms
89,216 KB
testcase_10 AC 159 ms
112,896 KB
testcase_11 AC 247 ms
146,688 KB
testcase_12 AC 52 ms
62,336 KB
testcase_13 AC 110 ms
87,424 KB
testcase_14 AC 145 ms
103,936 KB
testcase_15 AC 118 ms
90,240 KB
testcase_16 AC 73 ms
68,352 KB
testcase_17 AC 101 ms
81,152 KB
testcase_18 AC 189 ms
120,320 KB
testcase_19 AC 121 ms
95,488 KB
testcase_20 AC 91 ms
78,080 KB
testcase_21 AC 70 ms
69,248 KB
testcase_22 AC 116 ms
89,472 KB
testcase_23 AC 48 ms
55,168 KB
testcase_24 AC 47 ms
55,296 KB
testcase_25 AC 48 ms
55,424 KB
testcase_26 AC 93 ms
83,200 KB
testcase_27 AC 69 ms
68,352 KB
testcase_28 AC 92 ms
75,520 KB
testcase_29 AC 93 ms
78,976 KB
testcase_30 AC 176 ms
130,560 KB
testcase_31 AC 250 ms
147,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from functools import lru_cache
sys.setrecursionlimit(10**7)
def I(): return int(sys.stdin.readline().rstrip())
def MI(): return map(int,sys.stdin.readline().rstrip().split())
def LI(): return list(map(int,sys.stdin.readline().rstrip().split()))
def LI2(): return list(map(int,sys.stdin.readline().rstrip()))
def S(): return sys.stdin.readline().rstrip()
def LS(): return list(sys.stdin.readline().rstrip().split())
def LS2(): return list(sys.stdin.readline().rstrip())


N,K = MI()
Graph = [[] for _ in range(N+1)]
for _ in range(N-1):
    a,b,c = MI()
    Graph[a].append((b,c))
    Graph[b].append((a,c))

X = []
ans = 0


@lru_cache(maxsize=None)
def f(i,par):
    global ans
    count = 0
    for j,c in Graph[i]:
        if j == par:
            continue
        d = f(j,i)
        count += d
        X.append((c,c*d))
        ans += c*d
    if count == 0:
        return 1
    return count


f(1,0)

dp = [[-1]*(K+1) for _ in range(N)]
dp[0][0] = 0
for i in range(1,N):
    w,v = X[i-1]
    for j in range(K+1):
        if dp[i-1][j] >= 0:
            dp[i][j] = dp[i-1][j]
        if j >= w and dp[i-1][j-w] >= 0:
            dp[i][j] = max(dp[i][j],dp[i-1][j-w]+v)

M = max(dp[-1])
if M > 0:
    ans += M

print(ans)
0