** 凸包:** <Excerpt in index | 首页摘要>
<The rest of contents | 余下全文>
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
| #include <math.h> #include <stdio.h> #include <string.h> #include <algorithm> #include <iostream> using namespace std; struct node { int x,y; } a[5005],b[5005]; int n,top,row,line; int cross(const node a1,const node a2,const node b1,const node b2)//(a2-a1)x(b2-b1) { return (a2.x-a1.x)*(b2.y-b1.y)-(a2.y-a1.y)*(b2.x-b1.x); } double Dis(const node a1,const node a2) { return sqrt((a2.x-a1.x)*(a2.x-a1.x)+(a2.y-a1.y)*(a2.y-a1.y)*0.1); } void get_basic() { int i,j=0; node pp; pp=a[0]; for(i=1;i<n;i++) { if(pp.y>a[i].y||pp.y==a[i].y&&pp.x<a[i].x) { j=i; pp=a[i]; } } if(j!=0) { a[j]=a[0]; a[0]=pp; } a[n]=pp; } bool cmp(node p1,node p2) { int C=cross(a[0],p1,a[0],p2); return C? C>0:Dis(a[0],p1)<Dis(a[0],p2); } void tubao() { get_basic(); sort(a+1,a+n,cmp); b[0]=a[0]; b[1]=a[1]; int i; top=1; for(i=2;i<n;i++) { while(top&&cross(a[top-1],a[top],a[top],a[i])<=0) { top--; } b[++top]=a[i]; } }
|