码迷,mamicode.com
首页 > 其他好文 > 详细

Codeforces Round #339 Div.2 C - Peter and Snow Blower

时间:2016-01-15 06:23:57      阅读:218      评论:0      收藏:0      [点我收藏+]

标签:

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 技术分享.

Sample test(s)
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

几何题做的不多呢 这次算是对自己的检验

题意很简单 就是找多边形上距离旋转中心的最远点和最近点 然后大圆面积减小圆面积

最远点必定在点上 最近点则可能在边上

更新最近点时 取相邻两点和旋转中心构成三角形 用余弦定理判断这两个点对应的角是否钝角 换句话说最近点是否在相邻两点间

如果有钝角 直接取两点到中心距离近的那个 如果没有 用海伦公式算高

#include <iostream>
#include <string>
#include <cstdio>
#include <cmath>
#include <cstring>
#include <queue>
#include <map>
#include <vector>
#include <set>
#include <algorithm>
#define INF 0x3F3F3F3F
#define PI 3.1415926535898
using namespace std;

struct Node{
    double x, y;
}node[100010];

double DISTANCE(int a, int b){
    return sqrt((node[a].x - node[b].x) * (node[a].x - node[b].x)
                + (node[a].y - node[b].y) * (node[a].y - node[b].y));
}

int main()
{
    int n;
    double up, down, s;
    scanf("%d%lf%lf", &n, &node[0].x, &node[0].y);
    up = 0; down = 1e20;
    for(int i = 1; i <= n; i++){
        scanf("%lf%lf", &node[i].x, &node[i].y);
        up = max(DISTANCE(i, 0), up);
    }
    for(int i = 1; i < n; i++){
        double a = DISTANCE(0, i);
        double b = DISTANCE(0, i + 1);
        double c = DISTANCE(i, i + 1);
        if(a*a + c*c - b*b < 0 ||  b*b + c*c - a*a < 0){
            down = min(down, min(a, b));
        }
        else{
            double p = (a + b + c) / 2;
            down = min(down, 2 * sqrt(p * (p - a) * (p - b) * (p - c)) / c);
        }    
    }
    {
        double a = DISTANCE(0, 1);
        double b = DISTANCE(0, n);
        double c = DISTANCE(1, n);
        if(a*a + c*c - b*b < 0 ||  b*b + c*c - a*a < 0){
            down = min(down, min(a, b));
        }
        else{
            double p = (a + b + c) / 2;
            down = min(down, 2 * sqrt(p * (p - a) * (p - b) * (p - c)) / c);
        }
    }
    s = ((up * up) - (down * down)) * PI;
    printf("%.16lf\n", s);
    //printf("up = %lf down = %lf\n", up, down);
    return 0;
}

 

Codeforces Round #339 Div.2 C - Peter and Snow Blower

标签:

原文地址:http://www.cnblogs.com/quasar/p/5132185.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!