CF1423C.Dušan's Railway
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
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 10⋅n shortcuts.
输入格式
The first line in the standard input contains an integer n ( 1≤n≤104 ), representing the number of the cities in Dušan's railway map, and an integer k ( 3≤k≤n ) representing the shortcutting diameter that he wants to achieve.
Each of the following n−1 lines will contain two integers ui and vi ( 1≤ui,vi≤n,ui=vi ), meaning that there is a railway between cities ui and vi .
输出格式
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 ui and vi , signifying that a shortcut is added between cities ui and vi .
输入输出样例
输入#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.