A12815 | Almost All
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
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 $\lfloor \frac{2n^2}{9} \rfloor$ has to be written on the blackboard at least once.
It is guaranteed that such an arrangement exists.
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 $\lfloor \frac{2n^2}{9} \rfloor$ 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 \le n \le 1000$ ) — the number of nodes.
Each of the next $n-1$ lines contains two integers $u$ and $v$ ( $1 \le u, v \le n$ , $u \neq v$ ), meaning that there is an edge between nodes $u$ and $v$ . It is guaranteed that these edges form a tree.
Each of the next $n-1$ lines contains two integers $u$ and $v$ ( $1 \le u, v \le n$ , $u \neq 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 \le x \le 10^6$ ), 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.
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.
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.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted