306386: CF1188A2. Add on a Tree: Revolution

Memory Limit:256 MB Time Limit:1 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

Add on a Tree: Revolution

题意翻译

### 题目大意: - 给你一个带边权的树,每条边的权值都是偶数且权值两两不同。 - 每次你可以选择两个叶子节点,并且把这两个点之间的所有边加上或减去一个整数。 - 你需要通过这样的操作把所有边的权值都变为 $0$。 - 输出一组合法解。无解输出 `NO`。 - $n\le 1000$。

题目描述

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 $ . ![](https://cdn.luogu.com.cn/upload/vjudge_pic/CF1188A2/28a5bf57378b8e075d1cfb9cec78bf6a95f2d193.png)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

说明

The configuration from the first sample is drawn below, and it is impossible to achieve. ![](https://cdn.luogu.com.cn/upload/vjudge_pic/CF1188A2/ef099977a7478d550f9eb5424b745b96bd539852.png)The sequence of operations from the second sample is illustrated below. ![](https://cdn.luogu.com.cn/upload/vjudge_pic/CF1188A2/b736ae1c004750afbef8d413bb160b9c4103fc07.png)

Input

题意翻译

### 题目大意: - 给你一个带边权的树,每条边的权值都是偶数且权值两两不同。 - 每次你可以选择两个叶子节点,并且把这两个点之间的所有边加上或减去一个整数。 - 你需要通过这样的操作把所有边的权值都变为 $0$。 - 输出一组合法解。无解输出 `NO`。 - $n\le 1000$。

加入题单

算法标签: