hdu3847Trash Removal(凸包)

链接

这题居然是WF的题, 应属于签到题。。

求一个多边形是否能被一个宽为d的矩形框住。

可以求一下凸包,然后枚举每条凸包的边,找出距离最远的点。

  1 #include <iostream>
  2 #include<cstdio>
  3 #include<cstring>
  4 #include<algorithm>
  5 #include<stdlib.h>
  6 #include<vector>
  7 #include<cmath>
  8 #include<queue>
  9 #include<set>
 10 using namespace std;
 11 #define N 100000
 12 #define LL long long
 13 #define INF 0xfffffff
 14 const double eps = 1e-8;
 15 const double pi = acos(-1.0);
 16 const double inf = ~0u>>2;
 17 const int MAXN=1550;
 18 struct point
 19 {
 20     double x,y;
 21     point(double x=0,double y=0):x(x),y(y){}
 22 }p[N],ch[N];
 23 typedef point pointt;
 24 point operator -(point a,point b)
 25 {
 26     return point(a.x-b.x,a.y-b.y);
 27 }
 28 int dcmp(double x)
 29 {
 30     if(fabs(x)<eps) return 0;
 31     return x<0?-1:1;
 32 }
 33 double dis(point a,point b)
 34 {
 35     return sqrt((a.x-b.x)*(a.x-b.x)+(a.y-b.y)*(a.y-b.y));
 36 }
 37 double cross(point a,point b)
 38 {
 39     return a.x*b.y-a.y*b.x;
 40 }
 41 double mul(point p0,point p1,point p2)
 42 {
 43     return cross(p1-p0,p2-p0);
 44 }
 45 double dis(point a)
 46 {
 47     return sqrt(a.x*a.x+a.y*a.y);
 48 }
 49 bool cmp(point a,point b)
 50 {
 51     if(dcmp(mul(p[0],a,b))==0)
 52         return dis(a-p[0])<dis(b-p[0]);
 53     else
 54         return dcmp(mul(p[0],a,b))>0;
 55 }
 56 int Graham(int n)
 57 {
 58     int i,k = 0,top;
 59     point tmp;
 60     for(i = 0 ; i < n; i++)
 61     {
 62         if(p[i].y<p[k].y||(p[i].y==p[k].y&&p[i].x<p[k].x))
 63             k = i;
 64     }
 65     if(k!=0)
 66     {
 67         tmp = p[0];
 68         p[0] = p[k];
 69         p[k] = tmp;
 70     }
 71     sort(p+1,p+n,cmp);
 72     ch[0] = p[0];
 73     ch[1] = p[1];
 74     top = 1;
 75     for(i = 2; i < n ; i++)
 76     {
 77         while(top>0&&dcmp(mul(ch[top-1],ch[top],p[i]))<0)
 78             top--;
 79         top++;
 80         ch[top] = p[i];
 81     }
 82     return top;
 83 }
 84 double distancetoline(point p,point a,point b)
 85 {
 86     point v1 = b-a,v2 = p-a;
 87     return fabs(cross(v1,v2))/dis(v1);
 88 }
 89 int main()
 90 {
 91     int i,j;
 92     int n,kk=0;
 93     while(scanf("%d",&n)&&n)
 94     {
 95         for(i = 0 ; i < n; i++)
 96         scanf("%lf%lf",&p[i].x,&p[i].y);
 97         int m = Graham(n);
 98         ch[m+1] = ch[0];
 99         double ans = INF;
100         for(i = 0 ; i <= m; i++)
101         {
102             double ts = 0;
103             for(j = 0 ; j <= m ; j++)
104             ts = max(ts,distancetoline(ch[j],ch[i],ch[i+1]));
105             ans = min(ans,ts);
106         }
107         ans = ceil(ans*100)/100;
108         printf("Case %d: %.2lf\n",++kk,ans);
109     }
110     return 0;
111 }

时间: 2024-08-28 15:01:49

hdu3847Trash Removal(凸包)的相关文章

POJ3528 HDU3662 三维凸包模板

POJ3528 HDU3662 第一道题 给定若干点 求凸包的表面积,第二题 给定若干点就凸包的面数. 简单说一下三维凸包的求法,首先对于4个点假设不共面,确定了唯一四面体,对于一个新的点,若它不在四面体内,为了让它进入凸包, 则对于所有凸包上的边,若边的一面是该点可以看到的而另一面看不到,则该点与该边构成的面要加入凸包. 模板代码非常清晰, #include<stdio.h> #include<algorithm> #include<string.h> #includ

关于2016.12.12——T1的反思:凸包的意义与应用

2016.12.12 T1 给n个圆,保证圆圆相离,求将圆围起来的最小周长.n<=100 就像上图.考场上,我就想用切线的角度来做凸包.以圆心x,y排序,像点凸包一样,不过用两圆之间的下切线角度来判断. 这就是下切线(我自己瞎编的名字): 好像是对的啊: 然后我就保证必AC的希望,用这种写法交了,然后就只得了N=2的暴力分... 自以为是正解,却落得如此下场... 为什么?这样不对吗?借用学长的力量,果然被Hack掉了: 这种情况,圆心排序后,检测的顺序并不是圆上的切点的顺序,自然就会挂. 蓝瘦

poj 1113 凸包周长

Wall Time Limit: 1000MS   Memory Limit: 10000K Total Submissions: 33888   Accepted: 11544 Description Once upon a time there was a greedy King who ordered his chief Architect to build a wall around the King's castle. The King was so greedy, that he w

UVA 11800 Determine the Shape --凸包第一题

题意: 给四个点,判断四边形的形状.可能是正方形,矩形,菱形,平行四边形,梯形或普通四边形. 解法: 开始还在纠结怎么将四个点按序排好,如果直接处理的话,有点麻烦,原来凸包就可搞,直接求个凸包,然后点就自动按逆时针排好了,然后就判断就可以了,判断依据题目下面有,主要是用到点积和叉积,判断垂直用点积,判断平行用叉积. 代码: #include <iostream> #include <cstdio> #include <cstring> #include <cstd

POJ 3348 最直接的凸包问题

题目大意: 给定一堆树的点,找到能组合成的最大面积,一个物体占50面积,求最多放多少物体 1 #include <cstdio> 2 #include <cstring> 3 #include <iostream> 4 #include <algorithm> 5 using namespace std; 6 const double eps = 1e-10; 7 const int N = 10005; 8 double myabs(double x) 9

hdu 1348 Wall(凸包模板题)

题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1348 Wall Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 3386    Accepted Submission(s): 968 Problem Description Once upon a time there was a gre

POJ1113 Wall【凸包】

Wall Time Limit: 1000MS   Memory Limit: 10000K Total Submissions: 24604   Accepted: 8183 Description King想在自己的n个城堡外建Wall,使Wall与任一城堡距离至少为L且能围住它的城堡. 求Wall最短长度. Input 第一行为 N (3 <= N <= 1000) 和 L(1 <= L <= 1000). 接下来 N 行,每行为城堡坐标Xi,Yi (-10000 <=

[凸包]Triangles

https://nanti.jisuanke.com/t/15429 题目大意:给出平面内$n$个整数坐标点,保证无三点共线.可以进行若干次连线,每次选择一个点对连接线段,但是任意两条线段都不得在给定的$n$个点之外有交点.问连线完成后,最多能构造出多少个三角形. 解题关键: 小于三个点的情况答案为零.考虑三个点的情况,由于三点不共线,必然构成一个三角形.现加入第四个点,若其在原三角形外部,则称其为外点,可以新构造$1$个三角形:若其在原三角形内部,则称其为内点,可以新构造$3$个三角形.故要尽

ZOJ - 3537 Cake (凸包+区间DP+最优三角剖分)

Description You want to hold a party. Here's a polygon-shaped cake on the table. You'd like to cut the cake into several triangle-shaped parts for the invited comers. You have a knife to cut. The trace of each cut is a line segment, whose two endpoin