HDU 1348 (凸包模板之卷包裹)

本文介绍了一个有趣的算法问题:如何为国王的城堡设计一个既满足距离要求又尽可能节省材料的围墙。通过计算几何的方法,找到围绕任意多边形的最小周长包围多边形。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

Wall

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 7258    Accepted Submission(s): 2099


Problem Description
Once upon a time there was a greedy King who ordered his chief Architect to build a wall around the King's castle. The King was so greedy, that he would not listen to his Architect's proposals to build a beautiful brick wall with a perfect shape and nice tall towers. Instead, he ordered to build the wall around the whole castle using the least amount of stone and labor, but demanded that the wall should not come closer to the castle than a certain distance. If the King finds that the Architect has used more resources to build the wall than it was absolutely necessary to satisfy those requirements, then the Architect will loose his head. Moreover, he demanded Architect to introduce at once a plan of the wall listing the exact amount of resources that are needed to build the wall.
Your task is to help poor Architect to save his head, by writing a program that will find the minimum possible length of the wall that he could build around the castle to satisfy King's requirements.



The task is somewhat simplified by the fact, that the King's castle has a polygonal shape and is situated on a flat ground. The Architect has already established a Cartesian coordinate system and has precisely measured the coordinates of all castle's vertices in feet.
 

Input
The first line of the input file contains two integer numbers N and L separated by a space. N (3 <= N <= 1000) is the number of vertices in the King's castle, and L (1 <= L <= 1000) is the minimal number of feet that King allows for the wall to come close to the castle.

Next N lines describe coordinates of castle's vertices in a clockwise order. Each line contains two integer numbers Xi and Yi separated by a space (-10000 <= Xi, Yi <= 10000) that represent the coordinates of ith vertex. All vertices are different and the sides of the castle do not intersect anywhere except for vertices.
 

Output
Write to the output file the single number that represents the minimal possible length of the wall in feet that could be built around the castle to satisfy King's requirements. You must present the integer number of feet to the King, because the floating numbers are not invented yet. However, you must round the result in such a way, that it is accurate to 8 inches (1 foot is equal to 12 inches), since the King will not tolerate larger error in the estimates.

This problem contains multiple test cases!

The first line of a multiple input is an integer N, then a blank line followed by N input blocks. Each input block is in the format indicated in the problem description. There is a blank line between input blocks.

The output format consists of N output blocks. There is a blank line between output blocks.
 

Sample Input
1 9 100 200 400 300 400 300 300 400 300 400 400 500 400 500 200 350 200 200 200


Sample Output
1628
 

代码如下:

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

struct Node {
    double x,y;
}pt[1005];
int sta[1005],ans[1005],cnt;
int cmp(Node a,Node b){
    if(a.x==b.x)    //左下角优先,先左后下
        return a.y<b.y;
    return a.x<b.x;
}
double judge(Node p1,Node p2,Node p3){  //这里一定理解公式的意义,顺逆时针
    return (p2.x-p1.x)*(p3.y-p1.y)-(p2.y-p1.y)*(p3.x-p1.x);
}
void calc(int n){
    sort(pt,pt+n,cmp);
    cnt=0;
    int top=0;
    sta[top++]=0; sta[top++]=1;//先求解下凸包
    for(int i=2;i<n;i++){
        while(top>1 && judge(pt[sta[top-2]],pt[sta[top-1]],pt[i])<=0)
            top--;
        sta[top++]=i;
    }
    for(int i=0;i<top;i++)  ans[cnt++]=sta[i];

    top=0;
    sta[top++]=n-1; sta[top++]=n-2; //求解上凸包
    for(int i=n-3;i>=0;i--){
        while(top>1 && judge(pt[sta[top-2]],pt[sta[top-1]],pt[i])<=0)
            top--;
        sta[top++]=i;
    }
    for(int i=0;i<top;i++)  ans[cnt++]=sta[i];  //cnt一直++将上下凸包连接起来,边界可能会重复,不影响最后计算
}
int main()
{
    int n,l,t;
    double Pi=acos(0.0)*2;
    cin>>t;
    while(t--)
    {
        cin>>n>>l;
        for(int i=0;i<n;i++)
            cin>>pt[i].x>>pt[i].y;
        calc(n);
        double res=2*Pi*l;
        for(int i=0;i<cnt-1;i++){
            res+=sqrt((pt[ans[i]].x-pt[ans[i+1]].x)*(pt[ans[i]].x-pt[ans[i+1]].x)
                      +(pt[ans[i]].y-pt[ans[i+1]].y)*(pt[ans[i]].y-pt[ans[i+1]].y));
        }
        printf("%.0lf\n",res);
        if(t)  puts("");
    }
    return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值