测评会员优惠活动进行中 · 开通 VIP,有效期内测评不限次 VIP 优惠中 · 测评不限次 立即查看

A12707. Add on a Tree: Revolution

编程题 普及/提高-

题目描述

Note that this is the second problem of the two similar problems. You can hack this problem if you solve it. But you can hack the previous problem only if you solve both problems.

You are given a tree with $n$ nodes. In the beginning, $0$ is written on all edges. In one operation, you can choose any $2$ distinct leaves $u$ , $v$ and any integer number $x$ and add $x$ to values written on all edges on the simple path between $u$ and $v$ . Note that in previous subtask $x$ was allowed to be any real, here it has to be integer.

For example, on the picture below you can see the result of applying two operations to the graph: adding $2$ on the path from $7$ to $6$ , and then adding $-1$ on the path from $4$ to $5$ .

![](/uploads/acgo/image/20ced8716aab8652_67f4718b0b5a.jpeg)You are given some configuration of nonnegative integer pairwise different even numbers, written on the edges. For a given configuration determine if it is possible to achieve it with these operations, and, if it is possible, output the sequence of operations that leads to the given configuration. Constraints on the operations are listed in the output format section.

Leave is a node of a tree of degree $1$ . Simple path is a path that doesn't contain any node twice.

输入格式

The first line contains a single integer $n$ ( $2 \le n \le 1000$ ) — the number of nodes in a tree.

Each of the next $n-1$ lines contains three integers $u$ , $v$ , $val$ ( $1 \le u, v \le n$ , $u \neq v$ , $0 \le val \le 10\,000$ ), meaning that there is an edge between nodes $u$ and $v$ with $val$ written on it. It is guaranteed that these edges form a tree. It is guaranteed that all $val$ numbers are pairwise different and even.

输出格式

If there aren't any sequences of operations which lead to the given configuration, output "NO".

If it exists, output "YES" in the first line. In the second line output $m$ — number of operations you are going to apply ( $0 \le m \le 10^5$ ). Note that you don't have to minimize the number of the operations!

In the next $m$ lines output the operations in the following format:

$u, v, x$ ( $1 \le u, v \le n$ , $u \not = v$ , $x$ — integer, $-10^9 \le x \le 10^9$ ), where $u, v$ — leaves, $x$ — number we are adding.

It is guaranteed that if there exists a sequence of operations producing given configuration, then there exists a sequence of operations producing given configuration, satisfying all the conditions above.

输入输出样例

输入 #1
5
1 2 2
2 3 4
3 4 10
3 5 18
输出 #1
NO
输入 #2
6
1 2 6
1 3 8
1 4 12
2 5 2
2 6 4
输出 #2
YES
4
3 6 1
4 6 3
3 4 7
4 5 2
输入 #3
5
1 2
1 3
1 4
2 5
输出 #3
NO
输入 #4
6
1 2
1 3
1 4
2 5
2 6
输出 #4
YES

说明/提示

The configuration from the first sample is drawn below, and it is impossible to achieve.

![](/uploads/acgo/image/4c5272d57dac8655_ef7e41bbc2f9.jpeg)The sequence of operations from the second sample is illustrated below.

![](/uploads/acgo/image/7df726d909b380e7_ac7dc84dd287.jpeg)
上一题 去做题 下一题