CF908C.New Year and Curling

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Carol is currently curling.

She has nn disks each with radius rr on the 2D plane.

Initially she has all these disks above the line y=10100y=10^{100} .

She then will slide the disks towards the line y=0y=0 one by one in order from 11 to nn .

When she slides the ii -th disk, she will place its center at the point (xi,10100)(x_{i},10^{100}) . She will then push it so the disk’s yy coordinate continuously decreases, and xx coordinate stays constant. The disk stops once it touches the line y=0y=0 or it touches any previous disk. Note that once a disk stops moving, it will not move again, even if hit by another disk.

Compute the yy -coordinates of centers of all the disks after all disks have been pushed.

输入格式

The first line will contain two integers nn and rr ( 1<=n,r<=10001<=n,r<=1000 ), the number of disks, and the radius of the disks, respectively.

The next line will contain nn integers x1,x2,...,xnx_{1},x_{2},...,x_{n} ( 1<=xi<=10001<=x_{i}<=1000 ) — the xx -coordinates of the disks.

输出格式

Print a single line with nn numbers. The ii -th number denotes the yy -coordinate of the center of the ii -th disk. The output will be accepted if it has absolute or relative error at most 10610^{-6} .

Namely, let's assume that your answer for a particular value of a coordinate is aa and the answer of the jury is bb . The checker program will consider your answer correct if for all coordinates.

输入输出样例

  • 输入#1

    6 2
    5 5 6 8 3 12
    

    输出#1

    2 6.0 9.87298334621 13.3370849613 12.5187346573 13.3370849613
    

说明/提示

The final positions of the disks will look as follows:

In particular, note the position of the last disk.

首页