D. Volatile Kite
time limit per test

2 seconds

memory limit per test

256 megabytes

input

standard input

output

standard output

You are given a convex polygon P with n distinct
vertices p1, p2, ..., pn.
Vertex pi has
coordinates (xi, yi) 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.

Input

The first line has one integer n (4 ≤ n ≤ 1 000) —
the number of vertices.

The next n lines contain the coordinates of the vertices. Line i contains
two integers xi and yi ( - 109 ≤ xi, yi ≤ 109) —
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).

Output

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 .

Examples
input
4
0 0
0 1
1 1
1 0
output
0.3535533906
input
6
5 0
10 0
12 -4
10 -8
5 -8
3 -4
output
1.0000000000
Note

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.

——————————————————————————————————

题目的意思是按顺序给出n个点坐标,任意移动每个点,使得凸多边形变成凹多边形,

问最大移动的点最少移动多少

观察我们很容易发现,只要把相邻3个点中间的点向另外两个点构成的直线垂直移动,

那两个点向外移动一定最小,枚举所有点即可

#include <iostream>
#include <cstdio>
#include <cstring>
#include <cmath>
#include <algorithm>
#include <string>
#include <set>
#include <map>
#include <queue> using namespace std;
#define inf 0x3f3f3f3f struct point
{
double x,y;
}; point intersection(point u1,point u2,point v1,point v2)
{
point ret=u1;
double t=((u1.x-v1.x)*(v1.y-v2.y)-(u1.y-v1.y)*(v1.x-v2.x))
/((u1.x-u2.x)*(v1.y-v2.y)-(u1.y-u2.y)*(v1.x-v2.x));
ret.x+=(u2.x-u1.x)*t;
ret.y+=(u2.y-u1.y)*t;
return ret;
} point ptoline(point p,point l1,point l2)
{
point t=p;
t.x+=l1.y-l2.y,t.y+=l2.x-l1.x;
return intersection(p,t,l1,l2);
} double dis(point p1,point p2)
{
return sqrt((p1.x-p2.x)*(p1.x-p2.x)+(p1.y-p2.y)*(p1.y-p2.y));
} int main()
{
point p[1006];
int n;
while(~scanf("%d",&n))
{
for(int i=0; i<n; i++)
{
scanf("%lf%lf",&p[i].x,&p[i].y);
}
p[n]=p[0];
p[n+1]=p[1];
double ans=inf;
for(int i=0; i<n; i++)
{
double x=dis(p[i+1],ptoline(p[i+1],p[i],p[i+2]))/2;
ans=min(ans,x);
}
printf("%.10lf\n",ans); } return 0;
}

最新文章

  1. System.nanoTime与System.currentTimeMillis的理解与区别
  2. CozyRSS开发记录12-MVVM,绑定RSS源和数据
  3. Linux 常用命令笔记 (持续更新)
  4. sqlldr使用
  5. 48种CIFilter
  6. OC - 11.使用Quartz2D剪裁图片并保存
  7. 手动启动jenkins
  8. Ecshop他们主动双语版切换来推断个人的计划
  9. Leetcode:convert_sorted_array_to_binary_search_tree
  10. Linux中加入用户、删除用户时新手可能遇到的问题
  11. web 直播&amp;即时聊天------阿里云、融云
  12. 什么是MSF
  13. C#设计模式(6)-原型模式
  14. mongodb命令行基础语法
  15. 【AI开发】基于深度学习的卡口车型、车牌识别
  16. Linux&#160;Linux下最大文件描述符设置
  17. [openjudge-贪心]装箱问题
  18. dubbo使用简介
  19. 十字线阵---CBF,传统波束形成
  20. Centos 二进制安装node.js

热门文章

  1. python面试题(转)
  2. python中迭代器(转)
  3. Element div is not closed
  4. getchar()、putchar()、gets()、puts()、cin.get()、cin.getline()、getline()
  5. 网页中引用优酷视频去广告自动播放代码[xyytit]
  6. 【校招面试 之 C/C++】第5题 C++各种构造函数的写法
  7. JavaScript对象继续总结
  8. Django配置Bootstrap, js
  9. Loadrunner12.5-录制http://www.gw.com.cn/网页时提示“SSL身份验证失败”错误,这是为什么呢?
  10. 向Ubuntu的Dash中添加图标