HDU 5534 Partial Tree(背包)

本文介绍了一种使用背包问题解决树状结构中节点度数优化的方法,通过分配节点度数并运用完全背包策略来最大化整棵树的酷值。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

思路:一棵树有2(n-1)个度,每个度都有它的权值,那么就相当于一个容量为2*(n-1)的背包,物品的体积是度数,可是这样有可能会出现没有被选的度数,那么我们就先每个点都分配一个度,然后就是完全背包啦


#include<bits/stdc++.h>
using namespace std;
const int maxn = 25000;
int a[maxn];
int dp[maxn];
int main()
{
    int T,n;
    scanf("%d",&T);
    while(T--)
    {
        scanf("%d",&n);
        for(int i = 0;i<n-1;i++)
            scanf("%d",&a[i]);
        int V = 2*(n-1)-n;
		for(int i = 0;i<=n;i++)
			dp[i]=-1e9;
        dp[0]=a[0]*n;
        for(int i=1;i<n-1;i++)
            a[i]-=a[0];
		for(int i = 1;i<=V;i++)
			for(int j = i;j<=V;j++)
				dp[j]=max(dp[j],dp[j-i]+a[i]);
		printf("%d\n",dp[V]);
    }
    return 0;
}


Description

In mathematics, and more specifically in graph theory, a tree is an undirected graph in which any two nodes are connected by exactly one path. In other words, any connected graph without simple cycles is a tree. 

You find a partial tree on the way home. This tree has  nodes but lacks of  edges. You want to complete this tree by adding  edges. There must be exactly one path between any two nodes after adding. As you know, there are  ways to complete this tree, and you want to make the completed tree as cool as possible. The coolness of a tree is the sum of coolness of its nodes. The coolness of a node is , where  is a predefined function and  is the degree of this node. What's the maximum coolness of the completed tree?

Input

The first line contains an integer  indicating the total number of test cases. 
Each test case starts with an integer  in one line, 
then one line with  integers 

 
 
 
There are at most  test cases with .

Output

For each test case, please output the maximum coolness of the completed tree in one line.

Sample Input

2
3
2 1
4
5 1 4

Sample Output

5
19


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值