Codeforces Round #339 (Div. 2)-C. 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 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

Note

In the first sample snow will be removed from that area:
这里写图片描述


题意:给你n个点,算由这n个点围成的多边形绕P点旋转,覆盖的面积是多少?

思路:数学题。先通过坐标变换,转换成绕原点旋转。然后求多边形离原点最远和最近的点,最远的点一定在n个点之中;而最近的点有可能在n个点里面,也有可能在某一条边上。两个圆组成的圆环就是所求的面积

代码

#include <iostream>
#include <iomanip>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <string>
#include <cmath>
#include <algorithm>
#define N 100008
#define ll long long
#define ull unsigned long long
#define pi acos(-1)
using namespace std;
struct point
{
    ll x, y;
    void operator -= (point a)
    {
        this->x -= a.x;
        this->y -= a.y;
    }
}node[N], p;
double len(point a, point b)    //求线段ab到原点的最小距离 
{
    double r = (a.x-b.x)*(a.x) + (a.y-b.y)*a.y;
    double d = (a.x-b.x)*(a.x-b.x) + (a.y-b.y)*(a.y-b.y);
    if (r <= 0) return a.x*a.x + a.y*a.y;
    else if (r >= d)    return b.x*b.x+b.y*b.y;
    r /= d;
    double x = a.x+(b.x-a.x)*r, y = a.y+(b.y-a.y)*r;
    return x*x+y*y;
}
int main()
{
//  freopen("1.txt", "r", stdin);
    ios::sync_with_stdio(false);
    cin.tie(0);
    int i, j, n;
    double r1, r2, t;
    cin >> n >> p.x >> p.y;
    r2 = 0;
    for (i = 0; i < n; i++)
    {
        cin >> node[i].x >> node[i].y;
        node[i] -= p;
        t = node[i].x*node[i].x + node[i].y*node[i].y;
        if (r2 < t) r2 = t;
    }
    r1 = 9999999999999;
    node[n] = node[0];
    for (i = 0; i < n; i++)
        r1 = min(r1, len(node[i+1], node[i]));
    cout.setf(ios::fixed);
    cout << setprecision(18) << pi*(r2-r1) << endl;
    return 0;
}
  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值