CF980E.The Number Games

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

The nation of Panel holds an annual show called The Number Games, where each district in the nation will be represented by one contestant.

The nation has nn districts numbered from 11 to nn , each district has exactly one path connecting it to every other district. The number of fans of a contestant from district ii is equal to 2i2^i .

This year, the president decided to reduce the costs. He wants to remove kk contestants from the games. However, the districts of the removed contestants will be furious and will not allow anyone to cross through their districts.

The president wants to ensure that all remaining contestants are from districts that can be reached from one another. He also wishes to maximize the total number of fans of the participating contestants.

Which contestants should the president remove?

输入格式

The first line of input contains two integers nn and kk ( 1k<n1061 \leq k < n \leq 10^6 ) — the number of districts in Panel, and the number of contestants the president wishes to remove, respectively.

The next n1n-1 lines each contains two integers aa and bb ( 1a,bn1 \leq a, b \leq n , aba \ne b ), that describe a road that connects two different districts aa and bb in the nation. It is guaranteed that there is exactly one path between every two districts.

输出格式

Print kk space-separated integers: the numbers of the districts of which the contestants should be removed, in increasing order of district number.

输入输出样例

  • 输入#1

    6 3
    2 1
    2 6
    4 2
    5 6
    2 3
    

    输出#1

    1 3 4
    
  • 输入#2

    8 4
    2 6
    2 7
    7 8
    1 2
    3 1
    2 4
    7 5
    

    输出#2

    1 3 4 5
    

说明/提示

In the first sample, the maximum possible total number of fans is 22+25+26=1002^2 + 2^5 + 2^6 = 100 . We can achieve it by removing the contestants of the districts 1, 3, and 4.

首页