POJ 1113:Wall
| Time Limit: 1000MS | Memory Limit: 10000K | |
| Total Submissions: 34026 | Accepted: 11591 |
Description
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 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
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
题意:
给出平面内指定多个点,求与它们所围成的区域相距为d的最少线段长度,也就是围成凸包的边长+半径为d的圆的周长~
既然知道了这个,就差写代码AC咯~
说到凸包,我也是第一次接触,只是看了一下凸包的思想,然后直接做,没想到考虑不周,错了好多好多好多次!
下次记得带模板~
思想:
- 先对这N个点进行排序,排序的依据有两种,一种是按照纵坐标优先,横坐标次之由小到大排序,另一种是极角排序,它需要找到平面内最左下角的点,然后以该点为起点,连接其他点,由其两点之间与x轴夹角,从下到上排序
- 排序完成之后,我们需要一个栈
- 逆时针或者顺时针每次检测三个点,用叉积判断这三个点所连接的两个线段是左转还是右转,若左转,入栈,若右转,说明此时为凹。则让第二个点出栈,第三个点入栈,别忘了每一次检测都要向后扫描
- 检测完之后栈中便是凸包各个顶点的坐标。
- 按照顺序求每两点距离,然后相加
- 计算圆的周长
- AC
AC代码:
#include<iostream>
#include<algorithm>
#include<cmath>
#include<stdio.h>
using namespace std;
#define PI acos(-1)
struct point
{
double x;
double y;
double distance(const point &b)const //计算距离
{
return hypot(x-b.x,y-b.y);
}
} ;
point a[1005];
struct stack
{
point data[1005];
int top;
} st;
point minn;
int crossLeft(point p0,point p1,point p2) //判读左转还是右转
{
return (p1.x-p0.x)*(p2.y-p0.y)-(p1.y-p0.y)*(p2.x-p0.x);
}
bool cmp(point p1,point p2)
{
int tmp=crossLeft(a[0],p1,p2);
if(tmp>0) return true;
else if(tmp==0&&a[0].distance(p1)<a[0].distance(p2))return true;
else return false;
}
void init(int n)
{
int i,k=0;
point p;
cin>>a[0].x>>a[0].y;
p.x=a[0].x;
p.y=a[0].y;
for(i=1; i<n; i++)
{
cin>>a[i].x>>a[i].y;
if( (p.y>a[i].y) || ((p.y==a[i].y)&&(p.x>a[i].x)) )
{
p.x=a[i].x;
p.y=a[i].y;
k=i;
}
}
a[k]=a[0];
a[0]=p;
sort(a+1,a+n,cmp);
}
int main()
{
int N,L;
cout.sync_with_stdio(false); //解除同步
while(cin>>N>>L)
{
init(N);
for(int i=0; i<2; i++)
st.data[i]=a[i]; //前两个点入栈
st.top=1;
for(int i=2; i<N; i++)
{
st.data[++st.top]=a[i]; //新点进栈
while(st.top>1&&crossLeft(st.data[st.top-2],st.data[st.top-1],st.data[st.top])<=0) //向后遍历判断是否存在凹的区域
st.data[st.top-1]=st.data[st.top],st.top--; //存在,出栈一个点
}
double l=0.0;
for(int i=0; i<st.top; i++)
l+=st.data[i].distance(st.data[i+1]); //求长度
l+=st.data[st.top].distance(st.data[0])+2*PI*L; //圆的周长
printf("%d\n",(int)(l+0.5));
}
}
POJ 1113:Wall的更多相关文章
- POJ 1113:Wall(凸包)
http://poj.org/problem?id=1113 Wall Time Limit: 1000MS Memory Limit: 10000K Total Submissions: 346 ...
- 【POJ 1113】Wall
http://poj.org/problem?id=1113 夏令营讲课时的求凸包例题,据说是PKUSC2015的一道题 我WA两次错在四舍五入上了(=゚ω゚)ノ #include<cmath& ...
- POJ 1113 Wall 凸包 裸
LINK 题意:给出一个简单几何,问与其边距离长为L的几何图形的周长. 思路:求一个几何图形的最小外接几何,就是求凸包,距离为L相当于再多增加上一个圆的周长(因为只有四个角).看了黑书使用graham ...
- poj 1113 Wall 凸包的应用
题目链接:poj 1113 单调链凸包小结 题解:本题用到的依然是凸包来求,最短的周长,只是多加了一个圆的长度而已,套用模板,就能搞定: AC代码: #include<iostream> ...
- 计算几何--求凸包模板--Graham算法--poj 1113
Wall Time Limit: 1000MS Memory Limit: 10000K Total Submissions: 28157 Accepted: 9401 Description ...
- poj 1113 凸包周长
Wall Time Limit: 1000MS Memory Limit: 10000K Total Submissions: 33888 Accepted: 11544 Descriptio ...
- POJ 3321:Apple Tree + HDU 3887:Counting Offspring(DFS序+树状数组)
http://poj.org/problem?id=3321 http://acm.hdu.edu.cn/showproblem.php?pid=3887 POJ 3321: 题意:给出一棵根节点为1 ...
- POJ 3252:Round Numbers
POJ 3252:Round Numbers Time Limit: 2000MS Memory Limit: 65536K Total Submissions: 10099 Accepted: 36 ...
- 【九度OJ】题目1113:二叉树 解题报告
[九度OJ]题目1113:二叉树 解题报告 标签(空格分隔): 九度OJ http://ac.jobdu.com/problem.php?pid=1113 题目描述: 如上所示,由正整数1,2,3-- ...
随机推荐
- Lua数据结构
lua中的table不是一种简单的数据结构,它可以作为其他数据结构的基础,如:数组,记录,链表,队列等都可以用它来表示. 1.数组 在lua中,table的索引可以有很多种表示方式.如果用整数来表示t ...
- boostrap折叠,jquery ui accordion同时打开多个标签
http://caibaojian.com/bootstrap/javascript.html http://www.w3cschool.cc/jqueryui/example-accordion.h ...
- JS的Touch事件们,触屏时的js事件
丫的,终于找到了JS在平板电脑上的事件!!! iphone.ipod Touch.ipad触屏时的js事件 1.Touch事件简介 pc上的web页面鼠标会产生onmousedown.on ...
- 数据库---MySQL练习题及答案
一. 设有一数据库,包括四个表:学生表(Student).课程表(Course).成绩表(Score)以及教师信息表(Teacher).四个表的结构分别如表1-1的表(一)~表( ...
- iOS中集成ijkplayer视频直播框架
ijkplayer 是一款做视频直播的框架, 基于ffmpeg, 支持 Android 和 iOS, 网上也有很多集成说明, 但是个人觉得还是不够详细, 在这里详细的讲一下在 iOS 中如何集成ijk ...
- linq查询结果转换为指定字段类型的list集合
转换查询结果为ProductId字段的类型的list集合 (from s in _db.Mobile_TeamAction || s.ActionStatus == select new { s.Pr ...
- override与overload的区别
override(重写,覆盖) 1.方法名.参数.返回值相同. 2.子类方法不能缩小父类方法的访问权限. 3.子类方法不能抛出比父类方法更多的异常(但子类方法可以不抛出异常). 4.存在于父类和子类之 ...
- 部署移动BI必须要考虑的五大因素
随着大屏智能手机和平板电脑的普及,商业智能分析应用程序也需要移动化.由于用户并不会长时间在办公桌前工作.在新的设备以及新的用户的共同促进下,移动BI即将成为主流. 但是,所有人都应该清楚这样一个事实: ...
- [SLAM]2D激光扫描匹配方法
1.Beam Model 2.Likehood field for k=1:size(zt,1) if zt(k,2)>0 d = -grid_dim/2; else d = grid_dim/ ...
- XML转换为对象操作类详解
//XML转换为对象操作类 //一,XML与Object转换类 using System.IO; using System.Runtime.Serialization.Formatters.Binar ...