Codeforces Round #339 (Div. 1):(613A)

来源:互联网 发布:python容易学吗 编辑:程序博客网 时间:2024/06/07 16:57
A. Peter and Snow Blower

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 polygonn (), and coordinates of pointP.

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 exceed10 - 6.

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

Sample test(s)
Input
3 0 00 1-1 21 2
Output
12.566370614359172464
Input
4 1 -10 01 22 01 1
Output
21.991148575128551812
/*  problem:cf-613A           *//*  author: dang              *//*  date:   2016-1-26  14:41  *//*  题目大意:    *//*           Wrong answer on test 54       哪里精度不对?    */#include<cstdio>#include<cstring>#include<iostream>#include<cmath>using namespace std;const double PI=acos(-1.0);const int MAX_N=1e6+10;struct node {    double x, y;};node p[1000005], pos;int n;double dis(node a, node b){    return (a.x-b.x)*(a.x-b.x)+(a.y-b.y)*(a.y-b.y);}int  main(){    double maxn=0, minn=double(MAX_N), temp;    scanf("%d", &n);    scanf("%lf%lf", &pos.x, &pos.y);    for(int i = 0; i < n; i ++) scanf("%lf%lf", &p[i].x, &p[i].y);    p[n] = p[0];    for(int i = 0; i < n; i++){        double a=dis(p[i], p[i+1]);        double b=dis(p[i], pos);        double c=dis(p[i+1], pos);        temp = max(b, c);        maxn = max(maxn,temp);        if(a+b<=c) minn=min(minn, b);              //c对的角是钝角        else if(a+c<=b) minn=min(minn, c);         //b对的角是钝角        else {                                     //锐角三角形            a = sqrt(a); b=sqrt(b); c=sqrt(c);            double x = (a+b+c)/2;            double s = x*(x-a)*(x-b)*(x-c);            minn = min(minn, (s*4/a/a));        }    }    printf("%.15lf\n", (maxn-minn)*PI);    return 0;}



/* AC 。。。 什么鬼。。。。*/#include<cstdio>#include<cstring>#include<iostream>#include<cmath>using namespace std;const double PI=acos(-1.0);const int MAX_N=1e6+10;struct node {    double x, y;};node p[1000005], pos;int n;double dis(node a, node b){    return sqrt((a.x-b.x)*(a.x-b.x)+(a.y-b.y)*(a.y-b.y));}int  main(){    double maxn=0, minn=double(MAX_N), temp;    scanf("%d", &n);    scanf("%lf%lf", &pos.x, &pos.y);    for(int i = 0; i < n; i ++) scanf("%lf%lf", &p[i].x, &p[i].y);    p[n] = p[0];    for(int i = 0; i < n; i++){        double a=dis(p[i], p[i+1]);        double b=dis(p[i], pos);        double c=dis(p[i+1], pos);        temp = max(b, c);        maxn = max(maxn,temp);        if(a*a+b*b<=c*c) minn=min(minn, b);              //c对的角是钝角        else if(a*a+c*c<=b*b) minn=min(minn, c);         //b对的角是钝角        else {                                     //锐角三角形            double x = (a+b+c)/2;            double s = sqrt(x*(x-a)*(x-b)*(x-c));            minn = min(minn, s*2/a);        }    }    printf("%.15lf\n", (maxn*maxn-minn*minn)*PI);    return 0;}


0 0
原创粉丝点击