杭电 1392 Surround the Trees

经典凸包问题!!!!

AC代码如下:

#include<iostream>
#include<cstring>
#include<algorithm>
#include<cmath>
#include<cstdio>
using namespace std;

struct H
{
    double x,y;
}trees[105];

bool cmp(H a,H b)
{
    return a.x<b.x||(a.x==b.x&&a.y<b.y);
}

int xj(double x1,double y1,double x2,double y2)
{
    if(x1*y2-x2*y1<=0)
        return 1;
    else return 0;
}

int main()
{
    int n;
    int i,j,tt;
    double fx,fy,sx,sy,xx,yy;
    double a[105],b[105];
    while(cin>>n,n)
    {
        tt=0;
        for(i=0;i<n;i++)
            cin>>trees[i].x>>trees[i].y;
        sort(trees,trees+n,cmp);
        for(i=0;i<n;i++)
        {
            while(tt>1&&xj(a[tt-1]-a[tt-2],b[tt-1]-b[tt-2],trees[i].x-a[tt-2],trees[i].y-b[tt-2]))
                tt--;
            a[tt]=trees[i].x;b[tt++]=trees[i].y;
        }
        int k=tt;
        for(i=n-2;i>=0;i--)
        {
            while(tt>k&&xj(a[tt-1]-a[tt-2],b[tt-1]-b[tt-2],trees[i].x-a[tt-2],trees[i].y-b[tt-2]))
                tt--;
            a[tt]=trees[i].x;b[tt++]=trees[i].y;
        }
        double sum=0;
        for(i=1;i<tt;i++)
        {
            sum+=sqrt((a[i]-a[i-1])*(a[i]-a[i-1])+(b[i]-b[i-1])*(b[i]-b[i-1]));
        }
        if(n==2)
            printf("%.2f\n",sum/2);
        else
        printf("%.2f\n",sum);
    }
    return 0;
}

杭电 1392 Surround the Trees

时间: 2024-10-16 15:59:48

杭电 1392 Surround the Trees的相关文章

HDUJ 1392 Surround the Trees 凸包

Surround the Trees Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 7203    Accepted Submission(s): 2752 Problem Description There are a lot of trees in an area. A peasant wants to buy a rope to

hdu 1392 Surround the Trees (凸包)

Surround the Trees Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)Total Submission(s): 7043    Accepted Submission(s): 2688 Problem Description There are a lot of trees in an area. A peasant wants to buy a rope to

HDU 1392 Surround the Trees

PS: 在求解两个点的时候就是两个点的距离,在这WA了一次. #include <iostream> #include <cstdio> #include <cstring> #include <algorithm> #include <vector> #include <cmath> using namespace std; const int maxn = 110; struct point { int x, y; point(d

hdu 1392 Surround the Trees(凸包果题)

题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1392 Surround the Trees Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 7473    Accepted Submission(s): 2860 Problem Description There are a lot o

HDU - 1392 Surround the Trees (凸包)

Surround the Trees:http://acm.hdu.edu.cn/showproblem.php?pid=1392 题意: 在给定点中找到凸包,计算这个凸包的周长. 思路: 这道题找出凸包上的点后,s数组中就是按顺序的点,累加一下距离就是周长了. #include <algorithm> #include <iterator> #include <iostream> #include <cstring> #include <cstdli

HDU 1392.Surround the Trees【凸包(求凸包周长)】【5月10】

Surround the Trees Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 9790    Accepted Submission(s): 3763 Problem Description There are a lot of trees in an area. A peasant wants to buy a rope to

HDU 1392 Surround the Trees (凸包周长)

题目链接:HDU 1392 Problem Description There are a lot of trees in an area. A peasant wants to buy a rope to surround all these trees. So at first he must know the minimal required length of the rope. However, he does not know how to calculate it. Can you

HDU 1392 Surround the Trees(几何 凸包模板)

http://acm.hdu.edu.cn/showproblem.php?pid=1392 题目大意: 二维平面给定n个点,用一条最短的绳子将所有的点都围在里面,求绳子的长度. 解题思路: 凸包的模板.凸包有很多的算法.这里用Adrew. 注意这几组测试数据 1 1 1 3 0 0 1 0 2 0 输出数据 0.00 2.00 1 #include<cmath> 2 #include<cstdio> 3 #include<algorithm> 4 using name

HDU 1392 Surround the Trees (Graham求凸包周长)

题目链接 题意 : 让你找出最小的凸包周长 . 思路 : 用Graham求出凸包,然后对每条边求长即可. Graham详解 1 #include <stdio.h> 2 #include <string.h> 3 #include <iostream> 4 #include <math.h> 5 #include <algorithm> 6 7 using namespace std ; 8 9 struct point 10 { 11 int