HDU5533-计算几何|暴力-G

来源:互联网 发布:淘宝买家提取神器 编辑:程序博客网 时间:2024/05/22 15:15

http://acm.hdu.edu.cn/showproblem.php?pid=5533
给定你一些点,问你能否构成正多边形。
因为出入的是int类型,所以只能是 正四边形。
1 找出所有点之间的最短距离,即边长。然后再在所有点中找出与边长相等的,只要数量为n即
说明能够成正多边形
2 要求输入的为整数,所以只有正四边形才能成立。
或者求一下 凸包 搞一搞

#include <iostream>#include <cstdio>#include <cstdlib>#include <vector>#include <algorithm>using namespace std;/**/const int maxn=200;vector<double >v;double  a[maxn];double  b[maxn];int main(){   int t;    int m;    scanf("%d",&t);    while(t--){          v.clear();          scanf("%d",&m);          for(int i=1;i<=m;i++){              scanf("%lf%lf",&a[i],&b[i]);          }          for(int i=1;i<=m;i++){              for(int j=i+1;j<=m;j++){                  v.push_back(1ll*(a[i]-a[j])*(a[i]-a[j])+(b[i]-b[j])*(b[i]-b[j]));              }          }          sort(v.begin(),v.end());          if(v[0]==v[m-1])            puts("YES");          else            {puts("NO");}    }    return 0;}

凸包

#include <map>#include <set>#include <vector>#include <math.h>#include <string>#include <stdio.h>#include <stdlib.h>#include <string.h>#include <iostream>#include <algorithm>#include <functional>const double pi = acos(-1.0);using namespace std;const int MAXN=10005;const double eps=1e-2;int dcmp(double x){    if(fabs(x)<eps)return 0;    if(x>0)return 1;    return -1;}                                                   //弄精度struct Point {    double x,y;}p[MAXN];                                           //搞点double dot(Point a,Point b,Point c){    double s1=b.x-a.x;    double t1=b.y-a.y;    double s2=c.x-a.x;    double t2=c.y-a.y;    return s1*s2+t1*t2;}                                                     //点积int n,res[MAXN],top;//全局变量,n是给出点的个数,top是凸包顶点的个数,res[]存排序后凸包上点的下标bool cmp(Point a,Point b){    if(a.y==b.y)return a.x<b.x;    return a.y<b.y;}bool mult(Point sp,Point ep,Point op){    return (sp.x-op.x)*(ep.y-op.y)>=(ep.x-op.x)*(sp.y-op.y);}void Graham(){    int len;    top=1;    sort(p,p+n,cmp);    if(n==0)return;res[0]=0;    if(n==1)return;res[1]=1;    if(n==2)return;res[2]=2;    for(int i=2;i<n;i++){        while(top&&mult(p[i],p[res[top]],p[res[top-1]]))top--;        res[++top]=i;    }    len=top;    res[++top]=n-2;    for(int i=n-3;i>=0;i--){        while(top!=len&&mult(p[i],p[res[top]],p[res[top-1]]))top--;        res[++top]=i;    }}                                                               //求凸包 double dist(Point a,Point b){    return sqrt((a.x-b.x)*(a.x-b.x)+(a.y-b.y)*(a.y-b.y));}int main(){    int m,t;    cin>>t;    while(t--)        {            cin>>m;            n=m;        for(int i=0;i<m;i++)            scanf("%lf%lf",&p[i].x,&p[i].y);        Graham();        if(top!=m){cout<<"NO\n";continue;}        double dis=dist(p[res[0]],p[res[1]]);        int f=0;        for(int i=0;i<top;i++)            if(dist(p[res[i]],p[res[i+1]])!=dis)            {                f=1;break;            }            if(f==0)        cout<<"YES\n";        else cout<<"NO\n";}    return 0;}
原创粉丝点击