
HDU - 5534 Partial Tree (完全背包)
发布日期:2021-05-04 18:29:27
浏览次数:16
分类:技术文章
本文共 1856 字,大约阅读时间需要 6 分钟。
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 nn nodes but lacks of n−1 edges. You want to complete this tree by adding n−1 edges. There must be exactly one path between any two nodes after adding. As you know, there are n−2 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 f(d), where ff is a predefined function and dd is the degree of this node. What's the maximum coolness of the completed tree?Input
The first line contains an integer T indicating the total number of test cases.
Each test case starts with an integer n in one line, then one line with n−1 integers f(1),f(2),…,f(n−1) 1≤T≤2015 2≤n≤2015 0≤f(i)≤10000 There are at most 10 test cases with n>100Output
For each test case, please output the maximum coolness of the completed tree in one line.
Sample Input
232 145 1 4
Sample Output
519
题意:构造一棵树,每个点的度数为 ai,求 f(a1) + ... + f(an) 的最大值
思路:一棵n个点的树的总度数为2 * n - 2,先给每个点都分一度(肯定的),剩下的 n - 2 个度作为背包容量,度数 0 ~ n - 2 看作 n - 1 个物品,就变成了一个裸的完全背包
#includeusing namespace std;typedef long long ll;const int inf = 0x3f3f3f3f;const int N = 2020;int dp[2 * N], f[N];int main() { int t, n; scanf("%d", &t); while(t--) { scanf("%d", &n); for(int i = 1; i < n; ++i) scanf("%d", &f[i]); for(int i = 0; i < N; ++i) dp[i] = -inf; dp[0] = 0; for(int i = 1; i < n - 1; ++i) { for(int j = i; j <= n - 2; ++j) { dp[j] = max(dp[j], dp[j - i] + f[i + 1] - f[1]); } } printf("%d\n", dp[n - 2] + n * f[1]); } return 0;}
发表评论
最新留言
做的很好,不错不错
[***.243.131.199]2025年03月26日 15时26分06秒
关于作者

喝酒易醉,品茶养心,人生如梦,品茶悟道,何以解忧?唯有杜康!
-- 愿君每日到此一游!
推荐文章
【一只蒟蒻的刷题历程】 【HDU-1276】 士兵队列训练问题
2019-03-01
【 UVA - 572 】 Oil Deposits (DFS水题)
2019-03-01
【Linux】 Linux实操 --- 开机、重启和用户登录注销
2019-03-01
RBF神经网络——案例一
2019-03-01
神经元的传递函数
2019-03-01
继承和派生1
2019-03-01
七月十一日训练总结
2019-03-01
约瑟夫环问题
2019-03-01
CF #716 (Div. 2) B. AND 0, Sum Big(思维+数学)
2019-03-01
阿里云数据库连接MySql
2019-03-01
SQLyog(MySQL图形化开发工具)
2019-03-01
MySQL报错记录一下10061或者非自己的IP
2019-03-01
Java 設計模式 - 建造者模式
2019-03-01
ES6 JavaScript 重新認識 Promise
2019-03-01
Spring--04--AOP增强
2019-03-01
2020-07-16:如何获得一个链表的倒数第n个元素?
2019-03-01
2020-12-04:mysql 表中允许有多少个 TRIGGERS?
2019-03-01
2020-12-10:i++是原子操作吗?为什么?
2019-03-01
2021-01-21:java中,HashMap的读流程是什么?
2019-03-01