CF1004E.Sonya and Ice Cream
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Sonya likes ice cream very much. She eats it even during programming competitions. That is why the girl decided that she wants to open her own ice cream shops.
Sonya lives in a city with n junctions and n−1 streets between them. All streets are two-way and connect two junctions. It is possible to travel from any junction to any other using one or more streets. City Hall allows opening shops only on junctions. The girl cannot open shops in the middle of streets.
Sonya has exactly k friends whom she can trust. If she opens a shop, one of her friends has to work there and not to allow anybody to eat an ice cream not paying for it. Since Sonya does not want to skip an important competition, she will not work in shops personally.
Sonya wants all her ice cream shops to form a simple path of the length r ( 1≤r≤k ), i.e. to be located in different junctions f1,f2,…,fr and there is street between fi and fi+1 for each i from 1 to r−1 .
The girl takes care of potential buyers, so she also wants to minimize the maximum distance between the junctions to the nearest ice cream shop. The distance between two junctions a and b is equal to the sum of all the street lengths that you need to pass to get from the junction a to the junction b . So Sonya wants to minimize
$$\max_{a} \min_{1 \le i \le r} d_{a,f_i} $$ </p><p>where $a$ takes a value of all possible $n$ junctions, $f\_i$ — the junction where the $i$ -th Sonya's shop is located, and $d\_{x,y}$ — the distance between the junctions $x$ and $y$ .</p><p>Sonya is not sure that she can find the optimal shops locations, that is why she is asking you to help her to open not more than $k$$$ shops that will form a simple path and the maximum distance between any junction and the nearest shop would be minimal.输入格式
The first line contains two integers n and k ( 1≤k≤n≤105 ) — the number of junctions and friends respectively.
Each of the next n−1 lines contains three integers ui , vi , and di ( 1≤ui,vi≤n , vi=ui , 1≤d≤104 ) — junctions that are connected by a street and the length of this street. It is guaranteed that each pair of junctions is connected by at most one street. It is guaranteed that you can get from any junctions to any other.
输出格式
Print one number — the minimal possible maximum distance that you need to pass to get from any junction to the nearest ice cream shop. Sonya's shops must form a simple path and the number of shops must be at most k .
输入输出样例
输入#1
6 2 1 2 3 2 3 4 4 5 2 4 6 3 2 4 6
输出#1
4
输入#2
10 3 1 2 5 5 7 2 3 2 6 10 6 3 3 8 1 6 4 2 4 1 6 6 9 4 5 2 5
输出#2
7
说明/提示
In the first example, you can choose the path 2-4, so the answer will be 4.
The first example.In the second example, you can choose the path 4-1-2, so the answer will be 7.
The second example.