codeforce 399 div1 a

本文介绍了一种特殊的雪地清扫机器人,它围绕固定点旋转清除雪地,并通过计算最外圈与最内圈覆盖区域来确定清理面积。文章详细阐述了如何通过顶点坐标找出最远与最近点,进而求得清扫面积。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

第一次写 多多包含

1.题目:

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:

https://i-blog.csdnimg.cn/blog_migrate/f729f0eb1c7be5efcdbbb7c326c00090.png

2.思路

首先,图是由一个图围绕某一个点转出来的,不难想象,图是由无数个点形成对吧,那就等于无数个点围绕着某一个点转一圈,点围绕点所形成的图形必定是一个圆吧,所以说最后的图取决于最外面的点和最里面的点,最外面的点是可以从顶点找到的,这个可以画个图证明,

而最里面的点怎么找?有可能是顶点,也有可能是某条边上的点,这又是为什么呢,还是那句,画个图,作为一名工科类的学生,切忌空想,就举一个简单的例子,一条平行于x轴无限长的直线绕原点转一圈,找最小距离,必定是直线中点到原点的距离,所以说这最短等于高到原点的距离,什么时候高才能用来当作最短呢?就是两个底角都为锐角的时候,这个可以画图证明,如果不是锐角故然会小,但是这个最短是不可取的,因为这条高是作在图的外面,这里可以用秦九公定理.

code:

#include <iostream>  
#include <cstdio>  
#include <cstdlib>  
#include <cstring>  
#include <cmath>  
#include <stack>  
#include <bitset>  
#include <queue>  
#include <set>  
#include <map>  
#include <string>  
#include <algorithm>
#include<queue>
#include<vector>
#include <stdio.h>  
using namespace std;
typedef long long LL;
#define PI acos(-1.0)
struct node {
    double x;
    double y;
}arr[1001000];
int n;
double MAX=0, MIN=100000000;
double dis(node a, node b)
{
    double x = a.x - b.x;
    double y = a.y - b.y;
    return sqrt(x*x + y*y);
}
int main()
{
    cin >> n>>arr[0].x>>arr[0].y;
    for (int i = 1; i <= n; i++)
    {
        cin >> arr[i].x >> arr[i].y;
    }
    for (int i = 1; i <= n; i++)
    {
        MAX = max(MAX, dis(arr[0], arr[i]));
    }
    arr[n + 1] = arr[1];
    for (int i = 1; i <= n; i++)
    {
        double bian1 = dis(arr[i], arr[0]);
        double bian2 = dis(arr[i + 1], arr[0]);
        double bian3 = dis(arr[i], arr[i + 1]);
        if(bian1*bian1>=bian2*bian2+bian3*bian3)
            MIN = min(MIN, bian2);
        else if(bian2*bian2>=bian1*bian1+bian3*bian3)
            MIN = min(MIN, bian1);
        else
        {
            double p = (bian1 + bian2 + bian3) / 2.0;
            double s = sqrt(p*(p - bian1)*(p - bian2)*(p - bian3));
            double h = 2 * s / bian3;
            MIN = min(MIN, h);
        }
    }
    double ans = ((MAX*MAX)-(MIN*MIN))*PI;
    printf("%.7lf", ans);
    return 0;
}



### Codeforces 测试数据生成方法 Codeforces 是一个流行的在线编程竞赛平台,支持多种方式来生成或提供测试数据。以下是关于如何在 Codeforces 平台上生成或提供测试数据的相关说明: #### 使用 `codeforces-parser` 自动生成测试数据 可以通过第三方工具如 `codeforces-parser` 来解析 Codeforces 的样例测试数据并自动生成测试文件。此工具可以从比赛页面提取样例输入和输出,并将其转换为可运行的测试用例[^1]。 安装和使用该工具的方法如下: ```bash pip install git+https://gitcode.com/gh_mirrors/co/codeforces-parser.git ``` 执行命令后,可以根据指定的比赛 ID 和题目编号下载对应的样例测试数据。例如: ```bash cfp --contest-id 1728 --problem A ``` 这会生成与问题 A 对应的输入和输出文件,便于本地调试和验证程序逻辑。 #### 手动创建自定义测试数据 如果需要更灵活的方式,则可以选择手动编写测试数据。通常情况下,可以按照以下结构准备输入文件: - **输入格式**: 遵循题目描述中的输入规范。 - **输出格式**: 根据预期的结果设计相应的输出内容。 假设有一道题目的输入形式如下所示: ```plaintext t (number of test cases) n_1 a_{1,1} ... a_{1,n_1} ... n_t a_{t,1} ... a_{t,n_t} ``` 那么可以构建类似的测试案例集用于验证算法实现是否正确。比如对于引用[3]提到的情况,即判断若干位数字组成的序列前缀匹配 π 值的问题,我们可以构造一些简单的例子作为起点[^3]: ```plaintext Input: 3 314 2718 1618 Output: 3 0 0 ``` 这里分别对应三个不同的测试情况——第一个完全吻合圆周率开头部分;第二个代表 e 数字串并不满足条件;最后一个接近黄金比例但也不符合条件。 #### 数据项的概念应用到测试数据的设计上 当考虑具体某个字段或者参数设置时,应当注意每一个单独的数据项都可能影响最终结果判定标准。正如引用[2]所指出那样,这些最小单位携带特定意义并且相互组合形成完整的记录条目[^2]。因此,在实际操作过程中要特别留意各组成部分之间的关系及其边界状况处理。 ```python def check_pi_prefix(s): pi_str = "3141592653589793238462643383279" max_match_length = min(len(pi_str), len(s)) for i in range(max_match_length + 1): if s[:i] != pi_str[:i]: return i - 1 return max_match_length # Example usage with custom inputs defined above. test_cases = ["314", "2718", "1618"] results = [check_pi_prefix(case) for case in test_cases] for result in results: print(result) ``` 上述 Python 函数实现了比较任意字符串同π数值前缀一致性的功能演示版本。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值