博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
CodeForce - 1189 D1. Add on a Tree (思维题)
阅读量:4503 次
发布时间:2019-06-08

本文共 2010 字,大约阅读时间需要 6 分钟。

Note that this is the first problem of the two similar problems. You can hack this problem only if you solve both problems.

You are given a tree with nn nodes. In the beginning, 00 is written on all edges. In one operation, you can choose any 22 distinct leaves uu, vvand any real number xx and add xx to values written on all edges on the simple path between uu and vv.

For example, on the picture below you can see the result of applying two operations to the graph: adding 22 on the path from 77 to 66, and then adding 0.5−0.5 on the path from 44 to 55.

Is it true that for any configuration of real numbers written on edges, we can achieve it with a finite number of operations?

Leaf is a node of a tree of degree 11. Simple path is a path that doesn't contain any node twice.

Input

The first line contains a single integer nn (2n1052≤n≤105) — the number of nodes.

Each of the next n1n−1 lines contains two integers uu and vv (1u,vn1≤u,v≤n, uvu≠v), meaning that there is an edge between nodes uu and vv. It is guaranteed that these edges form a tree.

Output

If there is a configuration of real numbers written on edges of the tree that we can't achieve by performing the operations, output "NO".

Otherwise, output "YES".

You can print each letter in any case (upper or lower).

Examples
input
Copy
21 2
output
Copy
YES
input
Copy
31 22 3
output
Copy
NO
 
 
 
题意:
给定一棵树,树上的边权初始为0,你可以在任意两个叶子之间的简单路径上的边上加上一个权值实数x。
问:能否在有限次数的操作内,得到边权任意组合的树
 
思路:
假设有叶子节点L1,L2,L3,并且有L1的邻居U,L1,L2和L3在以U为根节点的树的不同子树上。
现在想要U到L1边权为x,而其他边权不变。那么只需要L1-L2的路径上加上X/2,L1-L3的路径上加上X/2,L2-L3上的路径减去想x/2 即可。
显而易见要完成这个操作,U的度数要大于等于3
所以只需要判断有没有度数为2的点行了。
 
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#define fuck(x) cout<<#x<<" = "<
<
View Code

转载于:https://www.cnblogs.com/ZGQblogs/p/11157668.html

你可能感兴趣的文章
关于近似装箱问题的思考。
查看>>
Java父类对象调用子类实体:方法重写与动态调用
查看>>
Prime 算法的简述
查看>>
开发工具 快捷键
查看>>
开发过程存在的问题
查看>>
如何写错误日志
查看>>
PTA 1067 Sort with Swap(0, i) (25 分)(思维)
查看>>
define和typedef的区别
查看>>
c/c++ 继承与多态 容器与继承3
查看>>
WPF 控件
查看>>
计算机硬件基础以及编程的含义
查看>>
[UE4]Reliable,可靠性
查看>>
django异常:当设置DEBUG = False 时导致500错误的解决方案
查看>>
Git 怎样是自己fork的项目与原作者同步
查看>>
ftp如何使用命令上传文件
查看>>
「C语言」文件的概念与简单数据流的读写函数
查看>>
exp_euler两种形式int,void(扩展欧几里得算法)----可求最大公约数,二元一次方程的解...
查看>>
找到当前视图的父视图控制器
查看>>
Spiral Matrix II
查看>>
2015-9-13 NOIP模拟赛 by hzwer
查看>>