首页 > 代码库 > 算法复习——凸包加旋转卡壳(poj2187)
算法复习——凸包加旋转卡壳(poj2187)
题目:
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.
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
* 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)
题解:
凸包加旋转卡壳模板题,注意三个细节:凸包判断时注意变量i和tot,卡壳时注意一个next(j)!=i的条件,然后和只有两个点时的特判;
代码:
#include<iostream> #include<cstdio> #include<cstdlib> #include<cmath> #include<cctype> #include<cstring> #include<string> #include<ctime> #include<algorithm> using namespace std; struct point { int x; int y; }p[50005],q[50005]; inline int operator*(point a,point b) { return a.x*b.y-a.y*b.x; } inline point operator-(point a,point b) { point t; t.x=a.x-b.x; t.y=a.y-b.y; return t; } inline int norm(point a) { return a.x*a.x+a.y*a.y; } bool comp(int u,int v) { int det=(p[u]-p[1])*(p[v]-p[1]); if(det!=0) return det>0; return norm(p[u]-p[1])<norm(p[v]-p[1]); } int n,m; int next(int i) { if(i!=m) return ++i; else return 1; } void tubao() { int id=1; for(int i=2;i<=n;i++) if(p[id].x>p[i].x||(p[id].x==p[i].x&&p[id].y>p[i].y)) id=i; if(id!=1) swap(p[id],p[1]); int per[50005]; for(int i=1;i<=n;i++) per[i]=i; sort(per+2,per+n+1,comp); q[++m]=p[1]; for(int i=2;i<=n;i++) { int j=per[i]; while(m>=2&&(q[m]-q[m-1])*(p[j]-q[m-1])<=0) m--; q[++m]=p[j]; } q[++m]=p[1]; } int area(point u,point v,point s) { return (u-s)*(v-s); } int solve() { if(m==2) return (norm(q[1]-q[2])); q[m+1]=q[1]; int res=0; for(int i=1,j=3;i<=m;i++) { while(next(j)!=i&&area(q[i],q[i+1],q[j+1])>=area(q[i],q[i+1],q[j])) j=next(j); res=max(res,norm(q[i+1]-q[j])); res=max(res,norm(q[i]-q[j])); } return res; } int main() { //freopen("a.in","r",stdin); scanf("%d",&n); for(int i=1;i<=n;i++) scanf("%d%d",&p[i].x,&p[i].y); tubao(); int ans=solve(); cout<<ans<<endl; }
算法复习——凸包加旋转卡壳(poj2187)
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。