poj1113Wall(凸包)

链接

顺便整理出来一份自己看着比较顺眼的模板

  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 1010
 12 #define LL long long
 13 #define INF 0xfffffff
 14 const double eps = 1e-8;
 15 const double pi = 3.141592653;
 16 const double inf = ~0u>>2;
 17 struct Point
 18 {
 19     double x,y;
 20     Point(double x=0,double y=0):x(x),y(y) {} //构造函数 方便代码编写
 21 }p[N],ch[N];
 22 typedef Point pointt;
 23 pointt operator + (Point a,Point b)
 24 {
 25     return Point(a.x+b.x,a.y+b.y);
 26 }
 27 pointt operator - (Point a,Point b)
 28 {
 29     return Point(a.x-b.x,a.y-b.y);
 30 }
 31 pointt operator * (Point a,double b)
 32 {
 33     return Point(a.x*b,a.y*b);
 34 }
 35 pointt operator / (Point a,double b)
 36 {
 37     return Point(a.x/b,a.y/b);
 38 }
 39 bool operator < (const Point &a,const Point &b)
 40 {
 41     return a.x<b.x||(a.x==b.x&&a.y<b.y);
 42 }
 43 int dcmp(double x)
 44 {
 45     if(fabs(x)<eps) return 0;
 46     else return x<0?-1:1;
 47 }
 48 bool operator == (const Point &a,const Point &b)
 49 {
 50     return dcmp(a.x-b.x)==0&&dcmp(a.y-b.y)==0;
 51 }
 52 //求点积以及利用点积求长度和夹角的函数
 53 double dot(Point a,Point b)
 54 {
 55     return a.x*b.x+a.y*b.y;
 56 }
 57 //叉积及叉积求面积
 58 double cross(Point a,Point b)
 59 {
 60     return a.x*b.y-a.y*b.x;
 61 }
 62 double  dis(Point a)
 63 {
 64     return sqrt(dot(a,a));
 65 }
 66 double mul(Point p0,Point p1,Point p2)
 67 {
 68     return cross(p1-p0,p2-p0);
 69 }
 70 bool cmp(Point a,Point b)
 71 {
 72     if(dcmp(mul(p[1],a,b))==0)
 73         return dis(a-p[1])<dis(b-p[1]);
 74     else
 75         return dcmp(mul(p[1],a,b))>0;
 76 }
 77 int Graham(int n)
 78 {
 79     int i,k = 1,top = 1;
 80     Point tmp;
 81     if(n<=3)
 82     {
 83         for(i = 1; i <= 3 ; i++)
 84             ch[i] = p[i];
 85         return n+1;
 86     }
 87     for(i = 1 ; i <= n; i++)
 88     {
 89         if(p[i].y<p[k].y||(p[i].y==p[k].y&&p[i].x<p[k].x))
 90             k = i;
 91     }
 92     if(k!=1)
 93     {
 94         tmp = p[1];  p[1] = p[k];  p[k] = tmp;
 95     }
 96     sort(p+2,p+n+1,cmp);
 97     ch[top++] = p[1];
 98     ch[top++] = p[2];
 99     ch[top++] = p[3];
100     for(i = 4; i <= n ;)
101     {
102         if(top<3||mul(ch[top-2],ch[top-1],p[i])>0)
103         {
104             ch[top++] = p[i++];
105         }
106         else  top--;
107     }
108     return top;
109 }
110 int main()
111 {
112     int i,n,r;
113     while(scanf("%d%d",&n,&r)!=EOF)
114     {
115         for(i = 1 ; i <= n ; i++)
116         {
117             scanf("%lf%lf",&p[i].x,&p[i].y);
118         }
119         int top = Graham(n);
120         ch[top] = p[1];
121         double ma;
122         ma = 2*pi*r;
123         for(i = 1 ; i < top ; i++)
124         {
125             ma += dis(ch[i]-ch[i+1]);
126         }
127         printf("%.0f\n",ma);
128     }
129     return 0;
130 }

poj1113Wall(凸包)

时间: 2024-10-20 23:43:44

poj1113Wall(凸包)的相关文章

poj1113Wall 求凸包周长 Graham扫描法

#include<iostream> #include<algorithm> #include<cmath> using namespace std; typedef pair<int ,int > ll; ll num,dot[1010]; int i; const double pi=3.1415926535898; ll operator -(ll a,ll b) { return make_pair(a.first-b.first,a.second-

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$个三角形.故要尽