HDU 1392 凸包入门题目,求周长

这题就是凸包入门题目,求凸包周长

#include <iostream>
#include <cstdio>
#include <cstring>
#include <cmath>
#include <algorithm>
using namespace std;
const int maxn=105;


struct point
{
    double x;
    double y;
    double there;
} p[maxn],chs[maxn];




bool cmp1(point a,point b)
{
    if(a.y==b.y)return a.x<b.x;
    else
        return a.y<b.y;
}


bool cmp2(point a,point b)
{
    if(a.there==b.there)
        return a.x<b.x;
    else
        return a.there<b.there;
}


double get_there(point a,point b)
{
    return atan2((a.y-b.y),(a.x-b.x));
}


double dist_point2(point a,point b)
{
    return sqrt((a.x-b.x)*(a.x-b.x)+(a.y-b.y)*(a.y-b.y));
}


bool line_point1(point a,point b,point c)
{
    double m;
    m=(b.x-a.x)*(c.y-a.y)-(b.y-a.y)*(c.x-a.x);
    if(m>0)return false;
    if(m<0)return true;
    if(m==0)return true;
    return false;


}


int main()
{
    int i;
    int n;
    while(scanf("%d",&n),n)
    {
        double len=0;
        for(i=0; i<n ; i++)
        {
            scanf("%lf%lf",&p[i].x,&p[i].y);
        }
        if(n==1)
        {
            printf("0.00\n");
            continue;//这里如果是break就WA了
        }
        if(n==2)
        {
            double sum;
            sum=dist_point2(p[0],p[1]);
            printf("%.2lf\n",sum);
            continue;
        }
        sort(p, p+n, cmp1);
        for(i=0; i<n; i++)
        {
            p[i].there=get_there(p[i],p[0]);
        }
        sort(p+1, p+n,cmp2);


        chs[0]=p[0];
        chs[1]=p[1];
        chs[2]=p[2];
        int top=2;
        for(i=3; i<n; i++)
        {
            while(top>=1&&line_point1(chs[top-1],chs[top],p[i]))
            {
                top--;
            }
            chs[++top]=p[i];
        }
        top++;
        for(i=0; i<top; i++)
        {
            len+=dist_point2(chs[i%top],chs[(i+1)%top]);
        }
        printf("%.2lf\n",len);


    }
    return 0;
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值