A10807 | Volatile Kite
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
You are given a convex polygon $P$ with $n$ distinct vertices $p_{1},p_{2},...,p_{n}$ . Vertex $p_{i}$ has coordinates $(x_{i},y_{i})$ in the 2D plane. These vertices are listed in clockwise order.
You can choose a real number $D$ and move each vertex of the polygon a distance of at most $D$ from their original positions.
Find the maximum value of $D$ such that no matter how you move the vertices, the polygon does not intersect itself and stays convex.
You can choose a real number $D$ and move each vertex of the polygon a distance of at most $D$ from their original positions.
Find the maximum value of $D$ such that no matter how you move the vertices, the polygon does not intersect itself and stays convex.
输入格式
The first line has one integer $n$ ( $4<=n<=1000$ ) — the number of vertices.
The next $n$ lines contain the coordinates of the vertices. Line $i$ contains two integers $x_{i}$ and $y_{i}$ ( $-10^{9}<=x_{i},y_{i}<=10^{9}$ ) — the coordinates of the $i$ -th vertex. These points are guaranteed to be given in clockwise order, and will form a strictly convex polygon (in particular, no three consecutive points lie on the same straight line).
The next $n$ lines contain the coordinates of the vertices. Line $i$ contains two integers $x_{i}$ and $y_{i}$ ( $-10^{9}<=x_{i},y_{i}<=10^{9}$ ) — the coordinates of the $i$ -th vertex. These points are guaranteed to be given in clockwise order, and will form a strictly convex polygon (in particular, no three consecutive points lie on the same straight line).
输出格式
Print one real number $D$ , which is the maximum real number such that no matter how you move the vertices, the polygon stays convex.
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 .
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 .
输入输出样例
输入 #1
4 0 0 0 1 1 1 1 0
输出 #1
0.3535533906
输入 #2
6 5 0 10 0 12 -4 10 -8 5 -8 3 -4
输出 #2
1.0000000000
Here is a picture of the first sample

Here is an example of making the polygon non-convex.

This is not an optimal solution, since the maximum distance we moved one point is $≈0.4242640687$ , whereas we can make it non-convex by only moving each point a distance of at most $≈0.3535533906$ .

Here is an example of making the polygon non-convex.

This is not an optimal solution, since the maximum distance we moved one point is $≈0.4242640687$ , whereas we can make it non-convex by only moving each point a distance of at most $≈0.3535533906$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted