CF154E.Martian Colony

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

The first ship with the Earth settlers landed on Mars. The colonists managed to build nn necessary structures on the surface of the planet (which can be regarded as a plane, and the construction can be regarded as points on it). But one day the scanners recorded suspicious activity on the outskirts of the colony. It was decided to use the protective force field generating system to protect the colony against possible trouble.

The system works as follows: the surface contains a number of generators of the field (they can also be considered as points). The active range of each generator is a circle of radius rr centered at the location of the generator (the boundary of the circle is also included in the range). After the system is activated, it stretches the protective force field only over the part of the surface, which is within the area of all generators' activity. That is, the protected part is the intersection of the generators' active ranges.

The number of generators available to the colonists is not limited, but the system of field generation consumes a lot of energy. More precisely, the energy consumption does not depend on the number of generators, but it is directly proportional to the area, which is protected by the field. Also, it is necessary that all the existing buildings are located within the protected area.

Determine the smallest possible area of the protected part of the surface containing all the buildings.

输入格式

The first line contains two integers nn and rr ( 1<=n<=1051<=n<=10^{5} , 1<=r<=500001<=r<=50000 ) — the number of buildings and the active ranges of the generators, correspondingly.

Next nn lines contains the buildings' coordinates. The i+1i+1 -th ( 1<=i<=n1<=i<=n ) line contains two real numbers with at most three digits after the decimal point xix_{i} and yiy_{i} ( xi,yi<=50000|x_{i}|,|y_{i}|<=50000 ) — coordinates of the ii -th building. It is guaranteed that no two buildings are located at the same point, and no two different buildings are located closer than 11 .

It is guaranteed that there exists a circle with radius rr that contains all the buildings.

输出格式

Print the single real number — the minimum area of the protected part containing all the buildings. The answer is accepted if absolute or relative error doesn't exceed 10410^{-4} .

输入输出样例

  • 输入#1

    3 5
    0.00 0.000
    0.0 8.00
    6 8.00
    

    输出#1

    78.5398163397
    
  • 输入#2

    4 1000
    0.0 0.0
    0 2.00
    2.00 2
    2.0 0.00
    

    输出#2

    4.0026666140
    
  • 输入#3

    4 5
    3.00 0.0
    -3 0.00
    0.000 1
    0.0 -1.00
    

    输出#3

    8.1750554397
    

说明/提示

In the first sample the given radius equals the radius of the circle circumscribed around the given points. That's why the circle that corresponds to it is the sought area. The answer is 25π25π .

In the second sample the area nearly coincides with the square which has vertexes in the given points.

The area for the third sample is shown on the picture below.

首页