A14047 | 13th Labour of Heracles
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
You've probably heard about the twelve labors of Heracles, but do you have any idea about the thirteenth? It is commonly assumed it took him a dozen years to complete the twelve feats, so on average, a year to accomplish every one of them. As time flows faster these days, you have minutes rather than months to solve this task. But will you manage?
In this problem, you are given a tree with $n$ weighted vertices. A tree is a connected graph with $n - 1$ edges.
Let us define its $k$ -coloring as an assignment of $k$ colors to the edges so that each edge has exactly one color assigned to it. Note that you don't have to use all $k$ colors.
A subgraph of color $x$ consists of these edges from the original tree, which are assigned color $x$ , and only those vertices that are adjacent to at least one such edge. So there are no vertices of degree $0$ in such a subgraph.
The value of a connected component is the sum of weights of its vertices. Let us define the value of a subgraph as a maximum of values of its connected components. We will assume that the value of an empty subgraph equals $0$ .
There is also a value of a $k$ -coloring, which equals the sum of values of subgraphs of all $k$ colors. Given a tree, for each $k$ from $1$ to $n - 1$ calculate the maximal value of a $k$ -coloring.
In this problem, you are given a tree with $n$ weighted vertices. A tree is a connected graph with $n - 1$ edges.
Let us define its $k$ -coloring as an assignment of $k$ colors to the edges so that each edge has exactly one color assigned to it. Note that you don't have to use all $k$ colors.
A subgraph of color $x$ consists of these edges from the original tree, which are assigned color $x$ , and only those vertices that are adjacent to at least one such edge. So there are no vertices of degree $0$ in such a subgraph.
The value of a connected component is the sum of weights of its vertices. Let us define the value of a subgraph as a maximum of values of its connected components. We will assume that the value of an empty subgraph equals $0$ .
There is also a value of a $k$ -coloring, which equals the sum of values of subgraphs of all $k$ colors. Given a tree, for each $k$ from $1$ to $n - 1$ calculate the maximal value of a $k$ -coloring.
输入格式
In the first line of input, there is a single integer $t$ ( $1 \leq t \leq 10^5$ ) denoting the number of test cases. Then $t$ test cases follow.
First line of each test case contains a single integer $n$ ( $2 \leq n \leq 10^5$ ). The second line consists of $n$ integers $w_1, w_2, \dots, w_n$ ( $0 \leq w_i \leq 10^9$ ), $w_i$ equals the weight of $i$ -th vertex. In each of the following $n - 1$ lines, there are two integers $u$ , $v$ ( $1 \leq u,v \leq n$ ) describing an edge between vertices $u$ and $v$ . It is guaranteed that these edges form a tree.
The sum of $n$ in all test cases will not exceed $2 \cdot 10^5$ .
First line of each test case contains a single integer $n$ ( $2 \leq n \leq 10^5$ ). The second line consists of $n$ integers $w_1, w_2, \dots, w_n$ ( $0 \leq w_i \leq 10^9$ ), $w_i$ equals the weight of $i$ -th vertex. In each of the following $n - 1$ lines, there are two integers $u$ , $v$ ( $1 \leq u,v \leq n$ ) describing an edge between vertices $u$ and $v$ . It is guaranteed that these edges form a tree.
The sum of $n$ in all test cases will not exceed $2 \cdot 10^5$ .
输出格式
For every test case, your program should print one line containing $n - 1$ integers separated with a single space. The $i$ -th number in a line should be the maximal value of a $i$ -coloring of the tree.
输入输出样例
输入 #1
4 4 3 5 4 6 2 1 3 1 4 3 2 21 32 2 1 6 20 13 17 13 13 11 2 1 3 1 4 1 5 1 6 1 4 10 6 6 6 1 2 2 3 4 1
输出 #1
18 22 25 53 87 107 127 147 167 28 38 44
The optimal $k$ -colorings from the first test case are the following:
In the $1$ -coloring all edges are given the same color. The subgraph of color $1$ contains all the edges and vertices from the original graph. Hence, its value equals $3 + 5 + 4 + 6 = 18$ .
In an optimal $2$ -coloring edges $(2, 1)$ and $(3,1)$ are assigned color $1$ . Edge $(4, 3)$ is of color $2$ . Hence the subgraph of color $1$ consists of a single connected component (vertices $1, 2, 3$ ) and its value equals $3 + 5 + 4 = 12$ . The subgraph of color $2$ contains two vertices and one edge. Its value equals $4 + 6 = 10$ .
In an optimal $3$ -coloring all edges are assigned distinct colors. Hence subgraphs of each color consist of a single edge. They values are as follows: $3 + 4 = 7$ , $4 + 6 = 10$ , $3 + 5 = 8$ .
In the $1$ -coloring all edges are given the same color. The subgraph of color $1$ contains all the edges and vertices from the original graph. Hence, its value equals $3 + 5 + 4 + 6 = 18$ .
In an optimal $2$ -coloring edges $(2, 1)$ and $(3,1)$ are assigned color $1$ . Edge $(4, 3)$ is of color $2$ . Hence the subgraph of color $1$ consists of a single connected component (vertices $1, 2, 3$ ) and its value equals $3 + 5 + 4 = 12$ . The subgraph of color $2$ contains two vertices and one edge. Its value equals $4 + 6 = 10$ .
In an optimal $3$ -coloring all edges are assigned distinct colors. Hence subgraphs of each color consist of a single edge. They values are as follows: $3 + 4 = 7$ , $4 + 6 = 10$ , $3 + 5 = 8$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted