Wall POJ - 1113

本文探讨了一个经典的凸包问题,即如何用最少的资源围绕国王的城堡建造一堵墙,同时保持一定的距离。通过解析几何和算法设计,文章提供了一种解决方案,包括计算围墙的最小可能长度。

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

Wall POJ - 1113 (凸包)

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.
Sample Input
9 100
200 400
300 400
300 300
400 300
400 400
500 400
500 200
350 200
200 200
Sample Output
1628
Hint
结果四舍五入就可以了

思路:典型的凸包问题,推出 围墙周长=凸包周长+半径为L的圆周长
注意结果四舍五入。

#include <iostream>
#include <queue>
#include <cstdio>
#include <cstring>
#include <algorithm>
#include <cmath>
#include <map>
#include <vector>
using namespace std;
typedef long long ll;
const double PI=acos(-1.0);
struct point {
    int x,y;
}p[1005],f[1005];
double mul(point a,point b,point c)
{
    return (b.x-a.x)*(c.y-a.y)-(c.x-a.x)*(b.y-a.y);
}
double juli(point a,point b)
{
    return sqrt((double)(a.x-b.x)*(a.x-b.x)+(a.y-b.y)*(a.y-b.y));
}
bool cmp1(point a,point b)
{
    if(a.y==b.y)
        return a.x<b.x;
    return a.y<b.y;
}
int n,t;
bool cmp2(point a,point b)
{
    double k=mul(p[0],a,b);
    if(k>0)
        return true;
    if(k==0)
        return juli(p[0],a)<juli(p[0],b);
    return false;
}
void tubao(void)
{
    sort(p,p+n,cmp1);
    sort(p+1,p+n,cmp2);
    f[0]=p[0],f[1]=p[1];
    t=1;
    for(int i=2;i<n;i++){
        while(t>0&&mul(f[t-1],f[t],p[i])<=0)
            t--;
        f[++t]=p[i];
    }
}
double solve(void)
{
    tubao();
    f[++t]=f[0];
    double c=0;
    for(int i=1;i<=t;i++){
        c+=juli(f[i-1],f[i]);
    }
    return c;
}
int main()
{
    int r;
    while(scanf("%d%d",&n,&r)==2)
    {
        memset(p,0,sizeof(p));
        memset(f,0,sizeof(f));
        for(int i=0;i<n;i++)
            scanf("%d%d",&p[i].x,&p[i].y);
        double c=solve();
        double k=2*PI*r;
        c+=k;
        printf("%d\n",(int)(c+0.5));
    }
    return 0;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值