CF1408C.Discrete Acceleration

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

There is a road with length ll meters. The start of the road has coordinate 00 , the end of the road has coordinate ll .

There are two cars, the first standing at the start of the road and the second standing at the end of the road. They will start driving simultaneously. The first car will drive from the start to the end and the second car will drive from the end to the start.

Initially, they will drive with a speed of 11 meter per second. There are nn flags at different coordinates a1,a2,,ana_1, a_2, \ldots, a_n . Each time when any of two cars drives through a flag, the speed of that car increases by 11 meter per second.

Find how long will it take for cars to meet (to reach the same coordinate).

输入格式

The first line contains one integer tt ( 1t1041 \leq t \leq 10^4 ): the number of test cases.

The first line of each test case contains two integers nn , ll ( 1n1051 \leq n \leq 10^5 , 1l1091 \leq l \leq 10^9 ): the number of flags and the length of the road.

The second line contains nn integers a1,a2,,ana_1, a_2, \ldots, a_n in the increasing order ( 1a1<a2<<an<l1 \leq a_1 < a_2 < \ldots < a_n < l ).

It is guaranteed that the sum of nn among all test cases does not exceed 10510^5 .

输出格式

For each test case print a single real number: the time required for cars to meet.

Your answer will be considered correct, if its absolute or relative error does not exceed 10610^{-6} . More formally, if your answer is aa and jury's answer is bb , your answer will be considered correct if abmax(1,b)106\frac{|a-b|}{\max{(1, b)}} \leq 10^{-6} .

输入输出样例

  • 输入#1

    5
    2 10
    1 9
    1 10
    1
    5 7
    1 2 3 4 6
    2 1000000000
    413470354 982876160
    9 478
    1 10 25 33 239 445 453 468 477

    输出#1

    3.000000000000000
    3.666666666666667
    2.047619047619048
    329737645.750000000000000
    53.700000000000000

说明/提示

In the first test case cars will meet in the coordinate 55 .

The first car will be in the coordinate 11 in 11 second and after that its speed will increase by 11 and will be equal to 22 meters per second. After 22 more seconds it will be in the coordinate 55 . So, it will be in the coordinate 55 in 33 seconds.

The second car will be in the coordinate 99 in 11 second and after that its speed will increase by 11 and will be equal to 22 meters per second. After 22 more seconds it will be in the coordinate 55 . So, it will be in the coordinate 55 in 33 seconds.

In the second test case after 11 second the first car will be in the coordinate 11 and will have the speed equal to 22 meters per second, the second car will be in the coordinate 99 and will have the speed equal to 11 meter per second. So, they will meet after 912+1=83\frac{9-1}{2+1} = \frac{8}{3} seconds. So, the answer is equal to 1+83=1131 + \frac{8}{3} = \frac{11}{3} .

首页