CF1336A.Linova and Kingdom

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Writing light novels is the most important thing in Linova's life. Last night, Linova dreamed about a fantastic kingdom. She began to write a light novel for the kingdom as soon as she woke up, and of course, she is the queen of it.

There are nn cities and n1n-1 two-way roads connecting pairs of cities in the kingdom. From any city, you can reach any other city by walking through some roads. The cities are numbered from 11 to nn , and the city 11 is the capital of the kingdom. So, the kingdom has a tree structure.

As the queen, Linova plans to choose exactly kk cities developing industry, while the other cities will develop tourism. The capital also can be either industrial or tourism city.

A meeting is held in the capital once a year. To attend the meeting, each industry city sends an envoy. All envoys will follow the shortest path from the departure city to the capital (which is unique).

Traveling in tourism cities is pleasant. For each envoy, his happiness is equal to the number of tourism cities on his path.

In order to be a queen loved by people, Linova wants to choose kk cities which can maximize the sum of happinesses of all envoys. Can you calculate the maximum sum for her?

输入格式

The first line contains two integers nn and kk ( 2n21052\le n\le 2 \cdot 10^5 , 1k<n1\le k< n ) — the number of cities and industry cities respectively.

Each of the next n1n-1 lines contains two integers uu and vv ( 1u,vn1\le u,v\le n ), denoting there is a road connecting city uu and city vv .

It is guaranteed that from any city, you can reach any other city by the roads.

输出格式

Print the only line containing a single integer — the maximum possible sum of happinesses of all envoys.

输入输出样例

  • 输入#1

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

    输出#1

    7
  • 输入#2

    4 1
    1 2
    1 3
    2 4

    输出#2

    2
  • 输入#3

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

    输出#3

    9

说明/提示

In the first example, Linova can choose cities 22 , 55 , 66 , 77 to develop industry, then the happiness of the envoy from city 22 is 11 , the happiness of envoys from cities 55 , 66 , 77 is 22 . The sum of happinesses is 77 , and it can be proved to be the maximum one.

In the second example, choosing cities 33 , 44 developing industry can reach a sum of 33 , but remember that Linova plans to choose exactly kk cities developing industry, then the maximum sum is 22 .

首页