【Codeforces Round 339 (Div 2)C】【计算几何 点到直线的距离模板】Peter and Snow Blower 多边形整体绕一圆心旋转的运行面积

C. Peter and Snow Blower
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

Peter got a new snow blower as a New Year present. Of course, Peter decided to try it immediately. After reading the instructions he realized that it does not work like regular snow blowing machines. In order to make it work, you need to tie it to some point that it does not cover, and then switch it on. As a result it will go along a circle around this point and will remove all the snow from its path.

Formally, we assume that Peter's machine is a polygon on a plane. Then, after the machine is switched on, it will make a circle around the point to which Peter tied it (this point lies strictly outside the polygon). That is, each of the points lying within or on the border of the polygon will move along the circular trajectory, with the center of the circle at the point to which Peter tied his machine.

Peter decided to tie his car to point P and now he is wondering what is the area of ​​the region that will be cleared from snow. Help him.

Input

The first line of the input contains three integers — the number of vertices of the polygon n (), and coordinates of point P.

Each of the next n lines contains two integers — coordinates of the vertices of the polygon in the clockwise or counterclockwise order. It is guaranteed that no three consecutive vertices lie on a common straight line.

All the numbers in the input are integers that do not exceed 1 000 000 in their absolute value.

Output

Print a single real value number — the area of the region that will be cleared. Your answer will be considered correct if its absolute or relative error does not exceed 10 - 6.

Namely: let's assume that your answer is a, and the answer of the jury is b. The checker program will consider your answer correct, if .

Examples
input
3 0 0
0 1
-1 2
1 2
output
12.566370614359172464
input
4 1 -1
0 0
1 2
2 0
1 1
output
21.991148575128551812
Note

In the first sample snow will be removed from that area:


#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
using namespace std;
void fre() { freopen("c://test//input.in", "r", stdin); freopen("c://test//output.out", "w", stdout); }
#define MS(x,y) memset(x,y,sizeof(x))
#define MC(x,y) memcpy(x,y,sizeof(x))
#define MP(x,y) make_pair(x,y)
#define ls o<<1
#define rs o<<1|1
typedef long long LL;
typedef unsigned long long UL;
typedef unsigned int UI;
template inline void gmax(T1 &a, T2 b) { if (b>a)a = b; }
template inline void gmin(T1 &a, T2 b) { if (b_<
2,要开始学点计算几何基础了。比如点到直线的距离。

【题意】
给你一个凸包,任意三点不共线。
这个凸包围绕一个中心旋转。
问你旋转出来的面积是多少

【类型】
计算几何 点到直线距离

【分析】
两点式如何转化为一般式?
(y-y1)/(y2-y1)==(x-x1)(x2-x1)
(y-y1)(x2-x1)==(x-x1)(y2-y1)
yx2 -y1x2 -x1y +x1y1 == xy2 -x1y2 -y1x +x1y1
(y2-y1)x +(x1-x2)y == x1y2-x2y1
得到
a=(y2-y1)
b=(x1-x2)
c=x2y1-x1y2

点到直线的距离=|ax+by+c|/sqrt(a^2+b^2)

【时间复杂度&&优化】
三分:O(n*三分次数)
公式:O(n)

【数据】
3 0 0
2 2
-2 2
0 4

*/


你可能感兴趣的:(题库-CF,CodeForces,模板,计算几何)