Wall POJ - 1113 [凸包]

Wall
Time Limit: 1000MS   Memory Limit: 10000K
Total Submissions: 39338   Accepted: 13432

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.

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

结果四舍五入就可以了

Source


裸凸包

#include<stdio.h>
#include<string.h>
#include<iostream>
#include <math.h>
#include<algorithm>
#define PI acos(-1.0)
using namespace std;
typedef long long ll;

const int MAX_N=1005;
const int MOD=1e9+7;
const int INF=0x3f3f3f3f;


struct node{
    int x,y;
};
node stackk[MAX_N];
node vex[MAX_N];
int sx,sy;
bool cmp1(node a,node b){
    if(a.y==b.y)
        return a.x<b.x;
    else
        return a.y<b.y;
}

bool cmp2(node a,node b){
    if(atan2(a.y-sy,a.x-sx)!=atan2(b.y-sy,b.x-sx))
        return atan2(a.y-sy,a.x-sx)<atan2(b.y-sy,b.x-sx);
    return a.x<b.x;
}

int cross(node a,node b,node c){
    return (b.x-a.x)*(c.y-a.y)-(c.x-a.x)*(b.y-a.y);
}

double dis(node a,node b){
    return sqrt(1.0*(a.x-b.x)*(a.x-b.x)+(a.y-b.y)*(a.y-b.y));
}

int main(void){
    int n,l;
    while(cin >> n >>l){
        memset(stackk,0,sizeof stackk);
        memset(vex,0,sizeof vex);
        for(int i=0;i<n;i++)    scanf("%d%d",&vex[i].x,&vex[i].y);
        sort(vex,vex+n,cmp1);
        memset(stackk,0,sizeof(stackk));
        stackk[0]=vex[0];
        sx=stackk[0].x;
        sy=stackk[0].y;
        sort(vex+1,vex+n,cmp2);
        stackk[1]=vex[1];
        int top=1;
        for(int i=2;i<n;i++){
            while(i>=1 && cross(stackk[top-1],stackk[top],vex[i])<0)
                top--;
            stackk[++top]=vex[i];
    //        printf("~%d %d\n",vex[i].x,vex[i].y);
        }
        double ans=0;
        for(int i=1;i<=top;i++) /*cout<<stackk[i].x<<" "<<stackk[i].y*/ans+=dis(stackk[i],stackk[i-1]);
        ans+=dis(stackk[0],stackk[top]);
    //    printf("%.8f\n",ans);
            ans+=1.0*2*PI*l;
        cout << (int)(ans+0.5)<<endl;
    }
    return 0;
}


全部评论

相关推荐

机智的豹子有点心碎:UU我还在找工作还没找到,一直在搜简历怎么改,总结了这些: 1.SEO:简历根据每一个岗位定制化:使用这个岗位中所描述的工作的词,它要求什么技能就把自己的技能描述成什么样子,把SEO用在自己身上(把我的简历和个人特质,当成一个热门产品来做 “搜索引擎优化”),让HR能用最低的门槛看到我 2."顺序:把岗位要求的技能跟经历放在简历的最开头、最显眼的位置" 3.包装:简历是一个最终交付说明书,只要最终学习成长做得到就可以,在合适的范围内自我吹捧(我这个人怎么能够在HR的角度被迅速的看懂和看到,减轻HR的工作压力) 4.每点加小标题​:用6~10字概括该段内容,便于面试官快速抓取信息。 5.避免空泛描述​:拒绝“培养了组织能力”等泛泛而谈,替换为具体行动和成果。 6."使用“三段式结构”​​:每段经历按“为什么做-做了什么-结果如何”展开: ​a) 为什么做​:痛点或目标(例如“品牌声量不足”) ​b) 做​了什么:方法论(例如“趋势洞察+竞品对标+人群细分”) ​c) 结果如何​:量化成果或影响(例如“推动客户投放20万预算”)" 7.量化成果​:用数字体现工作成效(如“整理500+份资料”“撰写2万字报告”)。 这些有的是我想去的岗的,如果对你有用的话按需修改就好~加油,早日上岸!
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务