結果

問題 No.1488 Max Score of the Tree
ユーザー NoneNone
提出日時 2021-05-04 21:13:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 104 ms / 2,000 ms
コード長 1,876 bytes
コンパイル時間 254 ms
コンパイル使用メモリ 82,520 KB
実行使用メモリ 62,016 KB
最終ジャッジ日時 2024-07-23 16:31:06
合計ジャッジ時間 3,647 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 88 ms
62,016 KB
testcase_01 AC 90 ms
61,024 KB
testcase_02 AC 95 ms
61,052 KB
testcase_03 AC 95 ms
61,332 KB
testcase_04 AC 100 ms
60,580 KB
testcase_05 AC 39 ms
54,040 KB
testcase_06 AC 56 ms
60,472 KB
testcase_07 AC 73 ms
60,284 KB
testcase_08 AC 62 ms
59,992 KB
testcase_09 AC 61 ms
61,560 KB
testcase_10 AC 72 ms
61,916 KB
testcase_11 AC 98 ms
61,180 KB
testcase_12 AC 42 ms
59,516 KB
testcase_13 AC 52 ms
60,652 KB
testcase_14 AC 69 ms
60,512 KB
testcase_15 AC 60 ms
61,832 KB
testcase_16 AC 46 ms
61,012 KB
testcase_17 AC 53 ms
61,352 KB
testcase_18 AC 77 ms
61,028 KB
testcase_19 AC 64 ms
61,192 KB
testcase_20 AC 53 ms
59,720 KB
testcase_21 AC 48 ms
61,160 KB
testcase_22 AC 59 ms
60,724 KB
testcase_23 AC 38 ms
53,076 KB
testcase_24 AC 39 ms
54,176 KB
testcase_25 AC 40 ms
52,728 KB
testcase_26 AC 53 ms
60,008 KB
testcase_27 AC 46 ms
59,636 KB
testcase_28 AC 49 ms
61,504 KB
testcase_29 AC 50 ms
59,740 KB
testcase_30 AC 83 ms
60,984 KB
testcase_31 AC 104 ms
61,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def dfs(start=0,goal=None):
    parents={}
    p,t=start,0
    parents[p]=-2
    next_set=[(~p,t),(p,t)]
    if p==goal:
        return t
    while next_set:
        p,t=next_set.pop()
        if p>=0:
            for q,d in edges[p]:
                if q in parents:
                    continue
                if q==goal:
                    return t+1
                parents[q]=p
                next_set.append((~q,t+1))
                next_set.append((q,t+1))
        else: # 帰りがけ処理
            p=~p
            if len(edges[p])==1 and p!=start:
                cnt[p]=1
            else:
                for q,d in edges[p]:
                    if q==parents[p]:
                        continue
                    cnt[p]+=cnt[q]
                    dp[q]=cnt[q]*d
                    cost_list.append(dp[q])
                    weight_list.append(d)

    return -1

def knapsack_weight(single=True):
    """
    重さが小さい時のナップサックDP
    :param single: True = 重複なし
    """
    """ dp[weight <= W] = 重さ上限を固定した時の最大価値 """
    N=len(weight_list)
    dp_min = 0  # 総和価値の最小値
    dp = [dp_min] * (W + 1)

    for item in range(N):
        if single:
            S = range(W, weight_list[item] - 1, -1)
        else:
            S = range(weight_list[item], W + 1)
        for weight in S:
            if dp[weight] < dp[weight - weight_list[item]] + cost_list[item]:
                dp[weight] = dp[weight - weight_list[item]] + cost_list[item]
    return dp[W]

N,K=map(int, input().split())
edges=[[] for _ in range(N)]
dp=[0]*N
cnt=[0]*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))

W = K
cost_list = []
weight_list = []

dfs(start=0,goal=None)
S=sum(dp)

print(S+knapsack_weight(single=True))

0