CF1874C.Jellyfish and EVA

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Monsters have invaded the town again! Asuka invites her good friend, Jellyfish, to drive EVA with her.

There are nn cities in the town. All the monsters are in city nn . Jellyfish and Asuka are currently in city 11 and need to move to city nn to defeat the monsters.

There are mm roads. The ii -th road allows one to travel from city aia_i to city bib_i . All the roads are directed. That is, one cannot travel from city bib_i to aia_i using the ii -th road. Interestingly, all roads satisfy ai<bia_i<b_i .

Driving EVA requires two people to work together. However, Asuka and Jellyfish have not done any training together before.

Suppose that EVA is currently in city uu . Jellyfish and Asuka will both choose an undestroyed road that starts at city uu . Suppose Jellyfish and Asuka choose roads that end at cities v1v_1 and v2v_2 respectively. If v1=v2v_1 = v_2 , EVA moves to city v1v_1 successfully. Otherwise, EVA stays in city uu and both roads that they have chosen will be destroyed.

It is possible that EVA is currently in city uu ( unu \neq n ) and there are no undestroyed roads that start at city uu . In that case, the mission will be a failure. Otherwise, if they reach city nn in the end, the mission is considered a success.

Every time they choose the roads, Jellyfish knows that Asuka will choose a road randomly. Now, Jellyfish wants to know, if she chooses the roads optimally, what is the maximum probability of the mission being successful.

输入格式

Each test contains multiple test cases. The first line contains the number of test cases tt ( 1t20001 \leq t \leq 2000 ). The description of the test cases follows.

The first line of each test case contains two integers, nn and mm ( 2n50002 \leq n \leq 5000 , 0mmin(n(n1)2,2105)0 \leq m \leq \min(\frac{n(n-1)}{2}, 2 \cdot 10^5) ) — the number of the cities and the number of the roads.

In the following mm lines of each test case, each line contains two integers aa and bb ( 1a<bn1 \leq a < b \leq n ) — representing a road from city aa to city bb .

It is guaranteed that for each test case, each road appears at most once.

It is guaranteed that the sum of nn over all test cases will not exceed 50005000 and that the sum of mm over all test cases will not exceed 21052 \cdot 10^5 .

输出格式

Output the maximum probability of the mission being successful if Jellyfish chooses the roads optimally.

Your answer will be accepted if the absolute or relative error does not exceed 10910^{-9} . Formally, let your answer be aa , and the jury's answer be bb . Your answer is considered correct if abmax(1,b)109\frac{|a-b|}{\max(1,|b|)} \leq 10^{-9} .

输入输出样例

  • 输入#1

    3
    3 2
    1 2
    1 3
    7 8
    1 2
    1 3
    1 4
    1 5
    2 6
    3 6
    4 6
    6 7
    10 20
    1 2
    1 3
    1 4
    1 5
    1 6
    2 6
    2 7
    2 8
    2 9
    3 4
    3 7
    3 8
    3 10
    4 6
    4 8
    4 10
    6 10
    7 8
    7 9
    7 10

    输出#1

    0.500000000000
    0.625000000000
    0.491666666667

说明/提示

In the first test case, Jellyfish will choose v1=3v_1=3 , and Asuka will choose v2=2v_2=2 with a possibility of 0.50.5 and v2=3v_2=3 with a possibility of 0.50.5 . The mission is considered a success with a possibility of 0.50.5 .

首页