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-- ...
随机推荐
- iis上json解析失败404
控制面板->打开或关闭windows功能->Internet信息服务->万维网服务->应用程序开发功能,勾选上“.net扩展性”和“ASP.NET”,保存后,重启IIS服务器. ...
- result结果集
结果集(ResultSet)是数据中查询结果返回的一种对象,可以说结果集是一个存储查询结果的对象,但是结果集并不仅仅具有存储的功能,他同时还具有操纵数据的功能,可能完成对数据的更新等. 结果集读取数据 ...
- IOS第一天
第一天(hello world) 1>UIView所有的控件都继承UIView,倒位置,宽度和高度..UIButton UILable 2>UIViewController .h 是声明属 ...
- C# Color
一.创建一个Color对象: Color c=Color.FromKnownColor(KnownColor.colorname); 二.四种同样颜色的不同方式: Color c1=Color.Fro ...
- C使用相关笔记
#将c文件编译成动态库 //hello.c int hello_add(int a, int b) { return a + b; } gcc -O -c -fPIC -o hello.o hello ...
- pv命令监控Linux命令的执行进度
pv命令监控Linux命令的执行进度 http://www.techweb.com.cn/network/system/2015-12-14/2241124.shtml yum install -y ...
- sql操作之修改表结构
修改表的语法=========================增加列[add 列名]=========================①alter table 表名 add 列名 列类型 列参数[加的 ...
- nginx yii2环境配置
#user nobody;worker_processes 2;#worker_cpu_affinity 0001 0010 0100 1000 #error_log logs/error.log;# ...
- HTML5 Canvas绘文本动画(使用CSS自定义字体)
一.HTML代码: <!DOCTYPE html> <html> <head> <title>Matrix Text - HTML5 Canvas De ...
- python install (version problem-method ln -s)
一般情况下,无需自己安装Python.因为在大多数Linux版本中,如Fedora,Ubuntu等,都已经默认安装了Python,但也可以根据需要自定义安装Python.下面使用源码编译安装来举个例子 ...