日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

hdu 1392 Surround the Trees

發布時間:2024/2/28 编程问答 30 豆豆
生活随笔 收集整理的這篇文章主要介紹了 hdu 1392 Surround the Trees 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

凸包模板




#include<cstdio> #include<cstring> #include<iostream> #include<string> #include<map> #include<algorithm> #include<cmath> using namespace std;const int N=105; const double eps=1e-8;struct point{double x;double y; }p[N], stack[N];bool isZero(double x){return (x>0 ? x : -x) <eps; }double dis(point A,point B){return sqrt((A.x-B.x)*(A.x-B.x)+(A.y-B.y)*(A.y-B.y)); }double crossProd(point A,point B,point C){return (B.x-A.x)*(C.y-A.y)-(B.y-A.y)*(C.x-A.x); }int cmp(const void *a, const void *b) {point *c = (point *)a;point *d = (point *)b;double k = crossProd(p[0], *c, *d);//極角大小轉化為求叉乘if (k<eps || isZero(k) && dis(p[0], *c)>dis(p[0], *d)) return 1;return -1; }double Graham(int n) {int i,x=p[0].x,y=p[0].y;int mi=0;for( i=1;i<n;i++){if(p[i].x<x||(p[i].x==x&&p[i].y<y)){x=p[i].x;y=p[i].y;mi=i;}}point tmp=p[mi];p[mi]=p[0];p[0]=tmp;qsort(p+1, n-1, sizeof(point), cmp);p[n]=p[0];stack[0]=p[0];stack[1]=p[1];stack[2]=p[2];int top=2;for(i=3;i<=n;i++){while(crossProd(stack[top-1],stack[top],p[i])<eps &&top>=2) --top;stack[++top]=p[i];}double len=0;for(int i=0;i<top;i++) len+=dis(stack[i],stack[i+1]);return len; }int main() {int n;while(scanf("%d",&n),n){int i;for(i=0;i<n;i++){scanf("%lf %lf",&p[i].x,&p[i].y);}if(n==1) printf("0.00\n");else if(n==2) printf("%.2lf\n",dis(p[0],p[1]));elseprintf("%.2lf\n",Graham(n));} }

總結

以上是生活随笔為你收集整理的hdu 1392 Surround the Trees的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。