博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Peter and Snow Blower
阅读量:7052 次
发布时间:2019-06-28

本文共 2436 字,大约阅读时间需要 8 分钟。

 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 .

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
#define N 100005#define PI acos(-1.0)using namespace std; struct point{ double x, y;} rec[N];double cross(point p, point p1){ return sqrt((p1.x-p.x)*(p1.x-p.x)+(p1.y-p.y)*(p1.y-p.y));}int main(){ point firP; int t; while(scanf("%d%lf%lf", &t, &firP.x, &firP.y) != EOF) { for(int i=0; i

 

转载于:https://www.cnblogs.com/soTired/p/5355493.html

你可能感兴趣的文章
[LINQ2Dapper]最完整Dapper To Linq框架(四)---Linq和SQL并行使用
查看>>
有意思的代码:控制台输出贪吃蛇游戏
查看>>
CF848C:Goodbye Souvenir(CDQ分治)
查看>>
linux系统查看IP地址,不显示IP地址或者只显示127.0.0.1
查看>>
javascript之闭包,递归,深拷贝
查看>>
20165315 实验一 Java开发环境的熟悉
查看>>
154. Find Minimum in Rotated Sorted Array II
查看>>
HTML 5:绘制旋转的太极图
查看>>
iOS中引用计数内存管理机制分析
查看>>
js循环生成多个easyui datagrid数据网格时,初始化表格
查看>>
CentOS7 +vsftpd+mysql (三)之 MySql 虚用户模式
查看>>
Chapter 1. 数据库的基本操作(连接、登录方式、卸载)
查看>>
Ajax与用户交互的存储格式JSON
查看>>
Alljoyn之管中窥豹
查看>>
软件开发资源下载
查看>>
编译原理之lex,yacc学习
查看>>
将十六进制显示为点分十进制
查看>>
open_clientfd(char* hostname,int port)和open_listenfd(int port)
查看>>
HDU 2612 (BFS搜索+多终点)
查看>>
L4.八.excercise2-v2
查看>>