CF440D.Berland Federalization
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Recently, Berland faces federalization requests more and more often. The proponents propose to divide the country into separate states. Moreover, they demand that there is a state which includes exactly k towns.
Currently, Berland has n towns, some pairs of them are connected by bilateral roads. Berland has only n−1 roads. You can reach any city from the capital, that is, the road network forms a tree.
The Ministry of Roads fears that after the reform those roads that will connect the towns of different states will bring a lot of trouble.
Your task is to come up with a plan to divide the country into states such that:
- each state is connected, i.e. for each state it is possible to get from any town to any other using its roads (that is, the roads that connect the state towns),
- there is a state that consisted of exactly k cities,
- the number of roads that connect different states is minimum.
输入格式
The first line contains integers n , k ( 1<=k<=n<=400 ). Then follow n−1 lines, each of them describes a road in Berland. The roads are given as pairs of integers xi,yi ( 1<=xi,yi<=n; xi=yi ) — the numbers of towns connected by the road. Assume that the towns are numbered from 1 to n .
输出格式
The the first line print the required minimum number of "problem" roads t . Then print a sequence of t integers — their indices in the found division. The roads are numbered starting from 1 in the order they follow in the input. If there are multiple possible solutions, print any of them.
If the solution shows that there are no "problem" roads at all, print a single integer 0 and either leave the second line empty or do not print it at all.
输入输出样例
输入#1
5 2 1 2 2 3 3 4 4 5
输出#1
1 2
输入#2
5 3 1 2 1 3 1 4 1 5
输出#2
2 3 4
输入#3
1 1
输出#3
0