A12173 | Ehab and a component choosing problem
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
You're given a tree consisting of $n$ nodes. Every node $u$ has a weight $a_u$ . You want to choose an integer $k$ $(1 \le k \le n)$ and then choose $k$ connected components of nodes that don't overlap (i.e every node is in at most 1 component). Let the set of nodes you chose be $s$ . You want to maximize:
$$$$\frac{\sum\limits_{u \in s} a_u}{k} $$ </p><p>In other words, you want to maximize the sum of weights of nodes in $s$ divided by the number of connected components you chose. Also, if there are several solutions, you want to <span class="tex-font-style-bf">maximize $k$$$.
Note that adjacent nodes can belong to different components. Refer to the third sample.
$$$$\frac{\sum\limits_{u \in s} a_u}{k} $$ </p><p>In other words, you want to maximize the sum of weights of nodes in $s$ divided by the number of connected components you chose. Also, if there are several solutions, you want to <span class="tex-font-style-bf">maximize $k$$$.
Note that adjacent nodes can belong to different components. Refer to the third sample.
输入格式
The first line contains the integer $n$ $(1 \le n \le 3 \cdot 10^5)$ , the number of nodes in the tree.
The second line contains $n$ space-separated integers $a_1$ , $a_2$ , $\dots$ , $a_n$ $(|a_i| \le 10^9)$ , the weights of the nodes.
The next $n-1$ lines, each contains 2 space-separated integers $u$ and $v$ $(1 \le u,v \le n)$ which means there's an edge between $u$ and $v$ .
The second line contains $n$ space-separated integers $a_1$ , $a_2$ , $\dots$ , $a_n$ $(|a_i| \le 10^9)$ , the weights of the nodes.
The next $n-1$ lines, each contains 2 space-separated integers $u$ and $v$ $(1 \le u,v \le n)$ which means there's an edge between $u$ and $v$ .
输出格式
Print the answer as a non-reduced fraction represented by 2 space-separated integers. The fraction itself should be maximized and if there are several possible ways, you should maximize the denominator. See the samples for a better understanding.
输入输出样例
输入 #1
3 1 2 3 1 2 1 3
输出 #1
6 1
输入 #2
1 -2
输出 #2
-2 1
输入 #3
3 -1 -1 -1 1 2 2 3
输出 #3
-3 3
输入 #4
3 -1 -2 -1 1 2 1 3
输出 #4
-2 2
A connected component is a set of nodes such that for any node in the set, you can reach all other nodes in the set passing only nodes in the set.
In the first sample, it's optimal to choose the whole tree.
In the second sample, you only have one choice (to choose node 1) because you can't choose 0 components.
In the third sample, notice that we could've, for example, chosen only node 1, or node 1 and node 3, or even the whole tree, and the fraction would've had the same value (-1), but we want to maximize $k$ .
In the fourth sample, we'll just choose nodes 1 and 3.
In the first sample, it's optimal to choose the whole tree.
In the second sample, you only have one choice (to choose node 1) because you can't choose 0 components.
In the third sample, notice that we could've, for example, chosen only node 1, or node 1 and node 3, or even the whole tree, and the fraction would've had the same value (-1), but we want to maximize $k$ .
In the fourth sample, we'll just choose nodes 1 and 3.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted