CF1205D.Almost All
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
You are given a tree with n nodes. You have to write non-negative integers on its edges so that the following condition would be satisfied:
For every two nodes i , j , look at the path between them and count the sum of numbers on the edges of this path. Write all obtained sums on the blackboard. Then every integer from 1 to ⌊92n2⌋ has to be written on the blackboard at least once.
It is guaranteed that such an arrangement exists.
输入格式
The first line contains a single integer n ( 1≤n≤1000 ) — the number of nodes.
Each of the next n−1 lines contains two integers u and v ( 1≤u,v≤n , u=v ), meaning that there is an edge between nodes u and v . It is guaranteed that these edges form a tree.
输出格式
Output n−1 lines, each of form u v x ( 0≤x≤106 ), which will mean that you wrote number x on the edge between u , v .
Set of edges (u,v) has to coincide with the set of edges of the input graph, but you can output edges in any order. You can also output ends of edges in an order different from the order in input.
输入输出样例
输入#1
3 2 3 2 1
输出#1
3 2 1 1 2 2
输入#2
4 2 4 2 3 2 1
输出#2
4 2 1 3 2 2 1 2 3
输入#3
5 1 2 1 3 1 4 2 5
输出#3
2 1 1 5 2 1 3 1 3 4 1 6
说明/提示
In the first example, distance between nodes 1 and 2 is equal to 2 , between nodes 2 and 3 to 1 , between 1 and 3 to 3 .
In the third example, numbers from 1 to 9 (inclusive) will be written on the blackboard, while we need just from 1 to 5 to pass the test.