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 (2≤n≤1052≤n≤105) — the number of nodes.

Each of the next n−1n−1 lines contains two integers uu and vv (1≤u,v≤n1≤u,v≤n, u≠vu≠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
2
1 2
output

Copy
YES
input

Copy
3
1 2
2 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<iostream>
#include<algorithm>
#include<vector>
#include<stack>
#include<queue>
#include<map>
#include<set>
#include<cstdio>
#include<cstring>
#include<cmath>
#include<ctime> #define fuck(x) cout<<#x<<" = "<<x<<endl;
#define debug(a, x) cout<<#a<<"["<<x<<"] = "<<a[x]<<endl;
#define ls (t<<1)
#define rs ((t<<1)|1)
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
const int maxn = ;
const int maxm = ;
const int inf = 0x3f3f3f3f;
const ll Inf = ;
const int mod = ;
const double eps = 1e-;
const double pi = acos(-); int n;
int num[maxn]; int main() { scanf("%d",&n); for(int i=;i<n;i++){
int x;
scanf("%d",&x);
num[x]++;
scanf("%d",&x);
num[x]++;
}
bool flag = true;
for(int i=;i<maxn;i++){
if(num[i]==){
flag=false;
}
} if(flag){
printf("YES\n");
}
else{
printf("NO\n");
} return ;
}

最新文章

  1. pc/app 项目/功能设计
  2. 20135220谈愈敏Blog7_可执行程序的装载
  3. vs2015发现一个字符串拼接 bug
  4. 控件ListView
  5. 关于linux上pdf阅读器
  6. careercup-栈与队列 3.4
  7. UIAlertView与UIActionSheet
  8. 怎样让你的安卓手机瞬间变Firefox os 畅玩firefox os 应用
  9. hdu 5035 概率论
  10. STS安装
  11. [Linux] 关闭防火墙以及开放端口
  12. How to disable Microsoft Compatibility Telemetry
  13. Go语言判断if else语句
  14. whmcs之全民idc
  15. python之demo2----改编自python官方提供的turtle_yinyang.py画阴阳的demo
  16. virtualbox+vagrant学习-2(command cli)-23-vagrant version命令
  17. hdu 4559 涂色游戏(SG)
  18. C#获取picturebox图片路径
  19. 【lightoj-1024】Eid (高精度)
  20. ibatis源码学习4_参数和结果的映射原理

热门文章

  1. hdu4324 dfs
  2. Spring中配置DataSource数据源的几种选择
  3. C++2:函数与传递
  4. Redis源码解析:09redis数据库实现(键值对操作、键超时功能、键空间通知)
  5. Python copy(), deepcopy()
  6. @loj - 6354@「CodePlus 2018 4 月赛」最短路
  7. ORACLE SQL数据类型转换
  8. LRJ-Example-06-17-Uva10562
  9. React事件用法
  10. Laravel5.5 支付宝手机网站支付的教程