CF BUDDY
← Problems·

1085D · Minimum Diameter Tree

1700 · constructive algorithms, implementation, trees

Problem: You are given a tree (an undirected connected graph without cycles) and an integer ss.

Vanya wants to put weights on all edges of the tree so that all weights are non-negative real numbers and their sum is ss. At the same time, he wants to make the diameter of the tree as small as possible.

Let's define the diameter of a weighed tree as the maximum sum of the weights of the edges lying on the path between two some vertices of the tree. In other words, the diameter of a weighed tree is the length of the longest simple path in the tree, where length of a path is equal to the sum of weights over all edges in the path.

Find the minimum possible diameter that Vanya can get.

Input Format: The first line contains two integer numbers nn and ss (2n1052 \leq n \leq 10^5, 1s1091 \leq s \leq 10^9) — the number of vertices in the tree and the sum of edge weights.

Each of the following n1n−1 lines contains two space-separated integer numbers aia_i and bib_i (1ai,bin1 \leq a_i, b_i \leq n, aibia_i \neq b_i) — the indexes of vertices connected by an edge. The edges are undirected.

It is guaranteed that the given edges form a tree.

Output Format: Print the minimum diameter of the tree that Vanya can get by placing some non-negative real weights on its edges with the sum equal to ss.

Your answer will be considered correct if its absolute or relative error does not exceed 10610^{-6}.

Formally, let your answer be aa, and the jury's answer be bb. Your answer is considered correct if abmax(1,b)106\frac {|a-b|} {max(1, b)} \leq 10^{-6}.

Note: In the first example it is necessary to put weights like this:

It is easy to see that the diameter of this tree is 22. It can be proved that it is the minimum possible diameter.

In the second example it is necessary to put weights like this:

Sample Cases

Case 1

Input

4 3
1 2
1 3
1 4

Output

2.000000000000000000

Case 2

Input

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

Output

0.500000000000000000

Case 3

Input

5 5
1 2
2 3
3 4
3 5

Output

3.333333333333333333

Similar problems

00:00:00
Loading editor…
Welcome! I'm your coding tutor for this problem. Use the chips below to reveal stored hints or get AI feedback on your code. I'll guide you step by step — never giving away the solution.

Sign in to unlock AI tutor feedback