codeforce 399 div1 a

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

第一次写 多多包含

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;
}



<think>好的,我现在需要帮助用户制定在Codeforces上达到1200分的策略和技巧。首先,用户之前已经询问过类似的问题,所以我得确保回答的结构清晰,并且包含实用的建议。根据系统指令,我需要用中文回答,正确使用LaTeX格式,还要生成相关问题。 首先,用户的目标是达到1200分,这属于入门到中级的过渡阶段。通常,这个分段的问题集中在Div.2的A、B题,有时可能涉及C题。因此,我需要强调基础算法和数据结构的掌握,比如贪心、模拟、排序、二分查找等。 接下来,用户可能需要具体的学习方法,比如刷题策略。这里可以推荐Codeforces的特定题库,比如按照评分筛选题目,从800-1200分的题目开始练习。同时,参加虚拟比赛和定期训练也是关键点。 另外,比赛技巧也很重要,比如快速读题、时间管理、避免罚时等。需要提醒用户注意这些细节,比如先解决简单题,不要卡在难题上。 代码实现方面,用户可能需要优化模板,比如快速输入输出,这在C++中常见,但用户可能使用Python,所以可以建议使用sys.stdin.readline来加速输入。 然后,我需要考虑用户可能的薄弱环节,比如数学基础或者特定算法,比如数论中的模运算、质数判断,或者动态规划的基础问题。这部分需要简要提及,并给出例子,比如如何高效判断质数,或者斐波那契数列的动态规划解法。 最后,生成相关问题时要围绕用户可能进一步需要的内容,比如如何突破瓶颈、特定算法的学习资源、时间管理技巧等。确保问题有针对性,能够引导用户深入下一步的学习。 检查一下是否需要引用,根据示例中的引用,可能不需要添加,但如果有必要可以加入相关资源推荐。同时,确保所有数学表达式用$...$格式,例如时间复杂度O(n log n)可以写成$O(n \log n)$,独立公式用$$...$$,比如动态规划的递推式。 现在组织内容,确保每个部分有清晰的标题,策略分点,代码示例正确,并且语言简洁。可能还需要提醒用户注意题目分类和总结错误,这些都是提高的关键。</think># Codeforces 达到 1200 分的策略与技巧 ## 一、基础能力强化 1. **算法优先级** 重点掌握:贪心、模拟、排序、二分查找、简单动态规划(如背包问题)、基础数论(模运算、质数判断)。 例如二分模板需熟练写出: ```python def binary_search(arr, target): left, right = 0, len(arr)-1 while left <= right: mid = (left + right) // 2 if arr[mid] < target: left = mid + 1 else: right = mid - 1 return left ``` 2. **时间复杂度控制** - 数据规模 ≤ $10^3$:允许 $O(n^2)$ 算法 - 数据规模 ≤ $10^5$:必须使用 $O(n \log n)$ 或更低复杂度 ## 二、针对性训练方法 1. **题目选择策略** - 使用Codeforces题库过滤器:`Difficulty: 800-1200` - 按标签分类训练:每周专注1-2个算法类型 2. **虚拟参赛实践** - 每周至少2场虚拟比赛(推荐Div.2) - 赛后分析:使用Codeforces的`PRACTICE`功能重做未通过题目 ## 三、比赛实战技巧 1. **解题顺序优化** - 开赛前5分钟快速浏览所有题目 - 建议顺序:A → B → D → C(根据实际难度动态调整) 2. **代码模板预置** 准备常用代码片段加速编写: ```python import sys from collections import defaultdict def main(): input = sys.stdin.readline n = int(input()) arr = list(map(int, input().split())) # 解题代码 if __name__ == "__main__": main() ``` ## 四、关键数学模型 1. **数论基础** - 快速幂算法:计算 $a^b \mod m$ 时使用 $$a^b \mod m = \begin{cases} 1 & b=0 \\ (a^{b/2})^2 \mod m & b \text{为偶数} \\ a \cdot (a^{(b-1)/2})^2 \mod m & b \text{为奇数} \end{cases}$$ 2. **动态规划模型** 经典斐波那契数列DP实现: ```python def fib(n): dp = [0] * (n+1) dp[1] = 1 for i in range(2, n+1): dp[i] = dp[i-1] + dp[i-2] return dp[n] ``` ## 五、效率提升工具 1. **调试技巧** - 边界测试:n=0/1, 数组全相同元素等极端情况 - 使用Python的`pdb`模块进行断点调试 2. **资源推荐** - [Errichto的算法教学频道](https://www.youtube.com/c/Errichto)(适合可视化学习) - Codeforces EDU板块的《Binary Search》课程[^1]
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值