King Graff's Defense

View as PDF

Submit solution

Points: 15 (partial)
Time limit: 1.4s
Memory limit: 64M

Author:
Problem types

King Graff, the ruler of the land of Feerie, has a problem - his nation is under attack! Luckily, he has an army at his disposal, composed of a whopping S soldiers (where S = 2).

Feerie consists of N (1 \le N \le 10^6) towns (numbered 1 \dots N), and M (1 \le M \le 10^6) roads. The i-th road runs between distinct towns A_i and B_i, in both directions. No pair of towns is directly connected by more than one road, but every pair of towns is connected by at least one path of connected roads. King Graff would like to position his two soldiers in two different towns to prepare for the impending assault - however, since he's not much of a strategist, he'll choose the towns at complete random.

Graff's only real concern is with his enemies using a divide-and-conquer strategy. His soldiers will be susceptible to this type of attack if there exists any single road that, if blocked, will prevent them from reaching each other by any system of connected roads. As the royal computer scientist, your job is to determine the probability that King Graff will be defeated.

Input Specification

Line 1: 2 integers, N and M
Next M lines: 2 integers, A_i and B_i, for i = 1 \dots M

Output Specification

Line 1: 1 real number (rounded to 5 decimal places), the probability that the two towns chosen by Graff can be disconnected by the removal of any single road

Sample Input

4 4
1 2
1 3
2 4
4 1

Sample Output

0.50000

Explanation of Sample

The map of Feerie is illustrated below:

King Graff can make 6 possible choices as to where to place his soldiers, and three of those (the three with one of the soldiers being at town 3) result in defeat (if the road between towns 1 and 3 is destroyed). The probability of failure is then \dfrac 3 6 = 0.5.


Comments

There are no comments at the moment.