A13827 | Dušan's Railway
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
As you may already know, Dušan is keen on playing with railway models. He has a big map with cities that are connected with railways. His map can be seen as a graph where vertices are cities and the railways connecting them are the edges. So far, the graph corresponding to his map is a tree. As you already know, a tree is a connected acyclic undirected graph.
He is curious to find out whether his railway can be optimized somehow. He wants to add so-called shortcuts, which are also railways connecting pairs of cities. This shortcut will represent the railways in the unique path in the tree between the pair of cities it connects. Since Dušan doesn't like repeating the railways, he has also defined good paths in his newly obtained network (notice that after adding the shortcuts, his graph is no more a tree). He calls a path good, if no edge appears more than once, either as a regular railway edge or as an edge represented by some shortcut (Every shortcut in a good path has length 1, but uses up all the edges it represents - they can't appear again in that path). Having defined good paths, he defines good distance between two cities to be the length of the shortest good path between them. Finally, the shortcutting diameter of his network is the largest good distance between any two cities.
Now he is curious to find out whether it is possible to achieve shortcutting diameter less or equal than $k$ , while adding as few shortcuts as possible.
Your solution should add no more than $\mathbf{10 \cdot n}$ shortcuts.
He is curious to find out whether his railway can be optimized somehow. He wants to add so-called shortcuts, which are also railways connecting pairs of cities. This shortcut will represent the railways in the unique path in the tree between the pair of cities it connects. Since Dušan doesn't like repeating the railways, he has also defined good paths in his newly obtained network (notice that after adding the shortcuts, his graph is no more a tree). He calls a path good, if no edge appears more than once, either as a regular railway edge or as an edge represented by some shortcut (Every shortcut in a good path has length 1, but uses up all the edges it represents - they can't appear again in that path). Having defined good paths, he defines good distance between two cities to be the length of the shortest good path between them. Finally, the shortcutting diameter of his network is the largest good distance between any two cities.
Now he is curious to find out whether it is possible to achieve shortcutting diameter less or equal than $k$ , while adding as few shortcuts as possible.
Your solution should add no more than $\mathbf{10 \cdot n}$ shortcuts.
输入格式
The first line in the standard input contains an integer $n$ ( $1 \le n \le 10^4$ ), representing the number of the cities in Dušan's railway map, and an integer k ( $3 \le k \le n$ ) representing the shortcutting diameter that he wants to achieve.
Each of the following $n - 1$ lines will contain two integers $u_i$ and $v_i$ ( $1 \le u_i, v_i \le n, u_i \neq v_i$ ), meaning that there is a railway between cities $u_i$ and $v_i$ .
Each of the following $n - 1$ lines will contain two integers $u_i$ and $v_i$ ( $1 \le u_i, v_i \le n, u_i \neq v_i$ ), meaning that there is a railway between cities $u_i$ and $v_i$ .
输出格式
The first line of the output should contain a number $t$ representing the number of the shortcuts that were added.
Each of the following $t$ lines should contain two integers $u_i$ and $v_i$ , signifying that a shortcut is added between cities $u_i$ and $v_i$ .
Each of the following $t$ lines should contain two integers $u_i$ and $v_i$ , signifying that a shortcut is added between cities $u_i$ and $v_i$ .
输入输出样例
输入 #1
10 3 1 2 2 3 3 4 4 5 5 6 6 7 7 8 8 9 9 10
输出 #1
8 3 7 3 5 3 6 3 1 7 9 7 10 7 4 7 5
Notice that adding a shortcut between all cities and city 1 will make a graph theoretic diameter become 2. On the other hand, the paths obtained that way might not be good, since some of the edges might get duplicated. In the example, adding a shortcut between all cities and city 1 doesn't create a valid solution, because for cities 5 and 10 the path that uses shortcuts 5-1 and 1-10 is not valid because it uses edges 1-2, 2-3, 3-4, 4-5 twice.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted