CF1188A2.Add on a Tree: Revolution
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
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 .
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≤n≤1000 ) — the number of nodes in a tree.
Each of the next n−1 lines contains three integers u , v , val ( 1≤u,v≤n , u=v , 0≤val≤10000 ), 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≤m≤105 ). 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≤u,v≤n , u=v , x — integer, −109≤x≤109 ), 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.
The sequence of operations from the second sample is illustrated below.