#Lutece0077. Erdos' Travel
Erdos' Travel
Migrated from Lutece 77 Erdos' Travel
All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.
Description
Paul Erdos(1913-1996) is a legendary mathematician of the th century(For more information about Erdos, see Problem Erdos Number
). Erdos likes to travel and visit other mathematicians. One day he comes to a strange country named ByteLand, where people live on small islands. The islands are connected by two-way bridges and the topology of the islands is a tree(i.e. you can go from any island to any other one via bridges, and if any bridge is broken then the islands will be separated into two mutually unreachable parts). See the picture below for an example of the topology of the islands.
Erdos has heard before from legends that on each island of ByteLand lives a great mathematician, so he devised the following visiting plan before he arrives here: On each day he would randomly choose an island different from the one he is currently on and go to visit the mathematician there. He would spend the whole day on that island, discussing mathematical problems with his host, and moves on again the next day. Note Erdos might visit the same mathematician twice during a series of days.
For example, in the picture above, assume Erdos initially arrives in island on the first day, he would randomly choose from islands , , , and as his next stop and travels there. If he chooses island , then on the second day his choice would be , , , or .
Although Erdos is very enthusiastic about his traveling plan, he hates to cross the old bridges every day! However he still stipulates to his random-traveling plan, because he is a strong believer in probability theory and he thinks that this is the best way to maximize the chance of discovering new mathematic theorems.
Now Erdos would like to know, if his choice in each day is purely random(i.e. if there are n choices, then each one will be chosen with probability of ), what is the expected(i.e. average) number of bridges he would cross during days. In addition, the initial island which Erdos arrives in is equally likely to be any of the islands of ByteLand.
Input
On the first line of the input file are two integers and , the number of islands of ByteLand and the number of days Erdos would travel. The following lines each contain two number and , meaning there is a bridge between island and .
Notes
-
Islands are numbered from to .
-
The topology of the given islands is a tree.
-
A fraction is reduced if and only if the greatest common divisor of and is
Output
Output on a single line the expected number of bridges Erdos would cross during R days. Output the answer as a reduced fraction .
Samples
3 1
1 2
2 3
4/3
2 2
1 2
2/1
Note
Sample Input/Output 1 Clarification
There are islands. Connected by bridges as . Erdos would travel for day. If he arrives in island initially, he would pick island or island as his next stop, both with probability of , for an expected number of $1\times \frac{1}{2} +2\times \frac{1}{2}=\frac{3}{2}$ bridges. If he arrives in island initially, he would cross, on average, bridge. He would cross an expected number of bridges if he initially arrives in island . The expected number of bridges Erdos would cross is thus $\frac{3}{2}\times\frac{1}{3}+1\times\frac{1}{3}+\frac{3}{2}\times\frac{1}{3}=\frac{4}{3}$.
Sample Input/Output 2 Clarification
There are only islands, and Erdos would travel for days. There are equally likely paths that he would take during the days: and , so the answer is .
Resources
The 5th UESTC Programming Contest Final