UVALive 6859 Points (凸包)

大体题意:

告诉你n个点,求出一个多边形,这个多边形的边只能是横着竖着 或者45°沿着对角线,并且多边形包括了所有的点,点要严格在多边形内,不能再边上!求最短周长的多边形!

思路:

从题意上看很像凸包,由于之前没有做过,比赛过程中,想了想 就否定凸包了 = =!

思路很简单,把每个点上下左右的点存下来,对这些点求凸包即可!


有个坑,错了好几遍,那就是在算距离时,不能直接算距离,因为相邻的两个凸包点可能不是45°,

要先算出x坐标之差,和y坐标之差,  求一个Min和Max,

那么我们要周长最小,能走45°就走45°,因为两点之间线段最短!

所以有Min个45°, Max - Min 个1

加起来即可!

详细见代码:

#include<cstdio>
#include<cmath>
#include<cstdlib>
#include<cstring>
#include<algorithm>
using namespace std;
const double eps = 1e-10;
const int maxn = 100000 + 10;
const int dx[] = {1,-1,0,0};
const int dy[] = {0,0,1,-1};
struct Point{
    double x,y;
    Point(double x = 0,double y = 0):x(x),y(y){}
}p[maxn<<2],tubao[maxn];
typedef Point Vector;
Vector operator + (Vector A,Vector B) { return Vector(A.x+B.x,A.y+B.y); }
Vector operator - (Vector A,Vector B) { return Vector(A.x-B.x,A.y-B.y); }
Vector operator * (Vector A,double p) { return Vector(A.x*p,A.y*p); }
Vector operator / (Vector A,double p) { return Vector(A.x/p,A.y/p); }
bool operator < (const Point& a,const Point &b){
    return a.x < b.x || (fabs(a.x-b.x) < eps && a.y < b.y);
}
int dcmp(double x){
    if (fabs(x) < eps) return 0;
    return x < 0 ? -1 : 1;
}
bool operator == (const Point&a, const Point &b){
    return dcmp(a.x-b.x) == 0 && dcmp(a.y-b.y) == 0;
}
double Cross(Vector A,Vector B) { return A.x*B.y - A.y * B.x; }
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 ConvexHull(Point *p,int n,Point * ch){
//    sort(p,p+n);
    int m = 0;
    for (int i =0 ; i < n; ++i){
        while(m > 1 && Cross(ch[m-1]-ch[m-2],p[i]-ch[m-2]) <= 0)--m;
        ch[m++] = p[i];
    }
    int k = m;
    for (int i = n-2; i >= 0; --i){
        while(m > k && Cross(ch[m-1]-ch[m-2],p[i]-ch[m-2]) <= 0) --m;
        ch[m++] = p[i];
    }
    if (n > 1)--m;
    return m;
}
int main(){
    int n;
    while(scanf("%d",&n) == 1){
        int cnt = 0;
        for (int i = 0; i < n; ++i){
            double x,y;
            scanf("%lf %lf",&x,&y);
            for (int j = 0; j < 4; ++j){
                double xx = x + dx[j];
                double yy = y + dy[j];
                p[cnt].x = xx;
                p[cnt++].y = yy;
            }
        }
        sort(p,p+cnt);
        int nn = unique(p,p+cnt)-p;

        int m = ConvexHull(p,nn,tubao);
        double ans = 0;
        for (int i = 0; i < m; ++i){
            int disx = abs(tubao[(i+1)%m].x-tubao[i].x);
            int disy = abs(tubao[(i+1)%m].y-tubao[i].y);
            int Max = max(disx,disy);
            int Min = min(disx,disy);
            ans += Min*sqrt(2) + Max-Min;
        }

        printf("%.15lf\n",ans);
    }

    return 0;
}


  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值