D - Beauty Contest

Time Limit:3000MS     Memory Limit:65536KB     64bit IO Format:%I64d & %I64u

Submit Status

Description

Bessie, Farmer John's prize cow, has just won first place in a bovine beauty contest, earning the title 'Miss Cow World'. As a result, Bessie will make a tour of N (2 <= N <= 50,000) farms around the world in order to spread goodwill between farmers and their cows. For simplicity, the world will be represented as a two-dimensional plane, where each farm is located at a pair of integer coordinates (x,y), each having a value in the range -10,000 ... 10,000. No two farms share the same pair of coordinates.

Even though Bessie travels directly in a straight line between pairs of farms, the distance between some farms can be quite large, so she wants to bring a suitcase full of hay with her so she has enough food to eat on each leg of her journey. Since Bessie refills her suitcase at every farm she visits, she wants to determine the maximum possible distance she might need to travel so she knows the size of suitcase she must bring.Help Bessie by computing the maximum distance among all pairs of farms.

Input

* Line 1: A single integer, N

* Lines 2..N+1: Two space-separated integers x and y specifying coordinate of each farm

Output

* Line 1: A single integer that is the squared distance between the pair of farms that are farthest apart from each other. 

Sample Input

4
0 0
0 1
1 1
1 0

Sample Output

2

Hint

Farm 1 (0, 0) and farm 3 (1, 1) have the longest distance (square root of 2) 
旋转卡壳动态图。
题意:给定n个点,2<=n<=50000,问两个点之间的最大距离的平方。
题解:n个点中距离最远的两个点,一定是对于每条边来说,所能构成的三角形面积最大
   的那个点与这条边的两个点的连线的这两条边中的一条边,证明过程参见上图。
   二维凸包旋转卡壳问题, 先用求出这些点所能构成的最大凸多边形,即二维凸包。
   然后逆时针遍历凸包的点和边,求对于某一条边来说使其构成三角形面积最大的点
   ,求出两条边长的较大值,更新最大距离即可。在遍历边的过程中,点不需要从头
   遍历,因为边和点是对应着的。求三角形面积的时候也不需要加绝对值,因为是有
   向面积逆向遍历,有向面积值一定是正的。
#include<cstdio>
#include<cmath>
#include<algorithm>
#define MAX 50010
using namespace std;
struct Point{
double x,y;
Point(double x=,double y=):x(x),y(y){}
};
Point P[MAX],ch[MAX];
typedef Point Vector;
Vector operator - (Point A,Point B)
{
return Vector(A.x-B.x,A.y-B.y);
}
bool operator <(const Point &a,const Point &b)
{
return a.x<b.x||(a.x==b.x&&a.y<b.y);
}
double Length(Vector A)
{
return A.x*A.x+A.y*A.y;
}
double Cross(Vector A,Vector B)
{
return A.x*B.y-A.y*B.x;
}
int ConvexHull(Point *p,int n)
{
sort(p,p+n);
int m=;
for(int i=;i<n;i++)
{
while(m>&&Cross(ch[m-]-ch[m-],p[i]-ch[m-])<=) m--;
ch[m++]=p[i];
}
int k=m;
for(int i=n-;i>=;i--)
{
while(m>k&&Cross(ch[m-]-ch[m-],p[i]-ch[m-])<=) m--;
ch[m++]=p[i];
}
if(n>) m--;
return m;
}
double rotating_calipers(int n)
{
int q=;
double ans=0.0;
ch[n]=ch[];
for(int p=;p<n;p++) //p是边 q是点
{
while(Cross(ch[p+]-ch[p],ch[q+]-ch[p])>Cross(ch[p+]-ch[p],ch[q]-ch[p]))
q=(q+)%n;
ans=max(ans,max(Length(ch[p]-ch[q]),Length(ch[p+]-ch[q])));
}
return ans;
}
int main()
{
int n;
while(scanf("%d",&n)!=EOF)
{
for(int i=;i<n;i++)
scanf("%lf%lf",&P[i].x,&P[i].y);
int m=ConvexHull(P,n);
double ans=rotating_calipers(m);
printf("%0.0lf\n",ans);
}
return ;
}

//注意不能像C题uva10652一样用pc,因为那个题里是pc++,这里pc是0。

最新文章

  1. 两种常用的C语言排序算法
  2. [LeetCode] Symmetric Tree 判断对称树
  3. 1、B2BUA
  4. 【Java基础】序列化与反序列化深入分析
  5. fastcgi安装
  6. create thread的时候发生core dump
  7. UIStepper步进器 ——事件驱动型控件,(一个+和-按钮的)
  8. Python基础学习笔记(十)日期Calendar和时间Timer
  9. preventDefault stopPropagation??
  10. asp.net mvc4 easyui datagrid 增删改查分页 导出 先上传后导入 NPOI批量导入 导出EXCEL
  11. Codeforces 474D Flowers
  12. Android Gradle配置
  13. Android---App Widget(一)
  14. C#面试题记录
  15. Git:常用功能 - 命令行
  16. 【ZJOI2010】网络扩容
  17. Tomcat8.0 配置环境
  18. R-- Dplyr包
  19. String是值传递还是引用传递
  20. 【转】像素 Pixel (Picture Element)

热门文章

  1. PHP 多参数方法的重构
  2. iOS-xib的使用1
  3. 用go run命令启动main package中的多个文件
  4. 绿盟python测试实习面试
  5. 四大关键步骤掌握CloudOps模型
  6. 使用闭包和lambda解决问题与常规方式解决问题的对比。
  7. 《Cracking the Coding Interview》——第5章:位操作——题目5
  8. 一道简单的CTFpython沙箱逃逸题目
  9. python 学习分享-select等
  10. 孤荷凌寒自学python第六十一天在Fedora28版的linux系统上找搭建本地Mongodb数据服务