POJ - 1039 Pipe(计算几何)
http://poj.org/problem?id=1039
题意
有一宽度为1的折线管道,上面顶点为(xi,yi),所对应的下面顶点为(xi,yi-1),假设管道都是不透明的,不反射的,光线从左边入口处的(x1,y1),(x1,y1-1)之间射入,向四面八方传播,求解光线最远能传播到哪里(取x坐标)或者是否能穿透整个管道。
分析
最远的直线必定经过一个上折点和一个下折点。枚举这两个点即可。
- #include <iostream>
- #include <stdio.h>
- #include <string.h>
- #include <algorithm>
- #include <queue>
- #include <map>
- #include <vector>
- #include <set>
- #include <string>
- #include <math.h>
- using namespace std;
- const double eps = 1e-;
- int sgn(double x)
- {
- if(fabs(x) < eps)return ;
- if(x < )return -;
- else return ;
- }
- struct Point
- {
- double x,y;
- Point(){}
- Point(double _x,double _y)
- {
- x = _x;y = _y;
- }
- Point operator -(const Point &b)const
- {
- return Point(x - b.x,y - b.y);
- }
- //叉积
- double operator ^(const Point &b)const
- {
- return x*b.y - y*b.x;
- }
- //点积
- double operator *(const Point &b)const
- {
- return x*b.x + y*b.y;
- }
- void input()
- {
- scanf("%lf%lf",&x,&y);
- }
- };
- struct Line
- {
- Point s,e;
- Line(){}
- Line(Point _s,Point _e)
- {
- s = _s;e = _e;
- }
- //两直线相交求交点
- //第一个值为0表示直线重合,为1表示平行,为0表示相交,为2是相交
- //只有第一个值为2时,交点才有意义
- pair<int,Point> operator &(const Line &b)const
- {
- Point res = s;
- if(sgn((s-e)^(b.s-b.e)) == )
- {
- if(sgn((s-b.e)^(b.s-b.e)) == )
- return make_pair(,res);//重合
- else return make_pair(,res);//平行
- }
- double t = ((s-b.s)^(b.s-b.e))/((s-e)^(b.s-b.e));
- res.x += (e.x-s.x)*t;
- res.y += (e.y-s.y)*t;
- return make_pair(,res);
- }
- };
- //判断直线和线段相交
- bool Seg_inter_line(Line l1,Line l2) //判断直线l1和线段l2是否相交
- {
- return sgn((l2.s-l1.e)^(l1.s-l1.e))*sgn((l2.e-l1.e)^(l1.s-l1.e)) <= ;
- }
- Point up[],down[];
- int main()
- {
- int n;
- while(scanf("%d",&n) == && n)
- {
- for(int i = ;i < n;i++)
- {
- up[i].input();
- down[i] = up[i];
- down[i].y -= ;
- }
- bool flag = false;//穿过所有的标记
- double ans = -10000000.0;
- int k;
- for(int i = ;i < n;i++)
- {
- for(int j = ;j < n;j++)
- {
- for(k = ;k < n;k++) //直线L最大延伸到第k-1节管子
- if(Seg_inter_line(Line(up[i],down[j]),Line(up[k],down[k])) == false)
- break;
- if(k >= n)
- {
- flag = true;
- break;
- }
- if(k > max(i,j)) //由于不清楚L究竟是与第k-1节管子的上管壁还是下管壁相交,因此都计算交点,取最优
- {
- if(Seg_inter_line(Line(up[i],down[j]),Line(up[k-],up[k])))
- {
- pair<int,Point>pr = Line(up[i],down[j])&Line(up[k-],up[k]);
- Point p = pr.second;
- ans = max(ans,p.x);
- }
- if(Seg_inter_line(Line(up[i],down[j]),Line(down[k-],down[k])))
- {
- pair<int,Point>pr = Line(up[i],down[j])&Line(down[k-],down[k]);
- Point p = pr.second;
- ans = max(ans,p.x);
- }
- }
- }
- if(flag)break;
- }
- if(flag)printf("Through all the pipe.\n");
- else printf("%.2lf\n",ans);
- }
- return ;
- }
POJ - 1039 Pipe(计算几何)的更多相关文章
- poj 1039 Pipe (Geometry)
1039 -- Pipe 理解错题意一个晚上._(:з」∠)_ 题意很容易看懂,就是要求你求出从外面射进一根管子的射线,最远可以射到哪里. 正解的做法是,选择上点和下点各一个,然后对于每个折点位置竖直 ...
- poj 1039 Pipe(叉乘。。。)
题目:http://poj.org/problem?id=1039 题意:有一宽度为1的折线管道,上面顶点为(xi,yi),所对应的下面顶点为(xi,yi-1),假设管道都是不透明的,不反射的,光线从 ...
- POJ 1039 Pipe【经典线段与直线相交】
链接: http://poj.org/problem?id=1039 http://acm.hust.edu.cn/vjudge/contest/view.action?cid=22013#probl ...
- 简单几何(直线与线段相交) POJ 1039 Pipe
题目传送门 题意:一根管道,有光源从入口发射,问光源最远到达的地方. 分析:黑书上的例题,解法是枚举任意的一个上顶点和一个下顶点(优化后),组成直线,如果直线与所有竖直线段有交点,则表示能穿过管道. ...
- POJ 1039 Pipe(直线和线段相交判断,求交点)
Pipe Time Limit: 1000MS Memory Limit: 10000K Total Submissions: 8280 Accepted: 2483 Description ...
- POJ 1039 Pipe
题意:一根管子,中间有一些拐点,给出拐点的上坐标,下坐标为上坐标的纵坐标减1,管子不能透过光线也不能折射光线,问光线能射到最远的点的横坐标. 解法:光线射到最远处的时候一定最少经过两个拐点,枚举每两个 ...
- poj 1039 Pipe(几何基础)
Pipe Time Limit: 1000MS Memory Limit: 10000K Total Submissions: 9932 Accepted: 3045 Description ...
- POJ 1039 Pipe 枚举线段相交
Pipe Time Limit: 1000MS Memory Limit: 10000K Total Submissions: 9493 Accepted: 2877 Description ...
- POJ 1039 Pipe | 线段相交
题目: 给一个管子,有很多转弯处,问从管口的射线射进去最长能射到多远 题解: 根据黑书,可以证明的是这条光线一定经过了一个上顶点和下顶点 所以我们枚举每对上下顶点就可以了 #include<cs ...
随机推荐
- Selenium Grid的Java调用方法
java -jar selenium-server-standalone-.jar -role hub explorer http://192.168.1.173:4444/grid/console ...
- js核心对象
- [CNBETA]动图告诉你 光速到底有多慢?
https://www.cnbeta.com/articles/tech/811381.htm 我们知道,30万公里每秒的光速是宇宙内目前已知的最高速度,至少现有人类理论体系下它是不可跨越的.30万公 ...
- layer 中 的type和 content
type - 基本层类型 类型:Number,默认:0 layer提供了5种层类型.可传入的值有:0(信息框,默认)1(页面层)2(iframe层)3(加载层)4(tips层). 若你采用layer. ...
- Delphi中根据分类数据生成树形结构的最优方法
一. 引言: TreeView控件适合于表示具有多层次关系的数据.它以简洁的界面,表现形式清晰.形象,操作简单而深受用户喜爱.而且用它可以实现ListView.ListBox所无法实现的很多功能 ...
- 借鉴 学习 DELPHI 通用函数 哈哈
[转]关于Delphi通用涵数 http://m.blog.csdn.net/blog/dragonjiang5460/1196927 2006-9-8阅读2016 评论0 DELPHI程序注册码设计 ...
- python+django+uwsgi 搭建环境
第一步: 搭建python环境 最好使用 pyenv可以很好的管理多版本下的python环境 第二步:搭建django环境 使用 pip install django==1.12.1 来安 ...
- luogu2024 食物链 (并查集)
把一个点拆成三个,分别对应它的同类.它的猎物和它的天敌,这样的话(以下的相等都是并查集意义上的): 如果令a,b同类,那么a的猎物不能是b的同类,a的天敌不能是b的同类 如果令a吃b,那么a的同类不能 ...
- 【bzoj1797】 Ahoi2009—Mincut 最小割
http://www.lydsy.com/JudgeOnline/problem.php?id=1797 (题目链接) 题意 求一条边是否可能在一个最小割集中,以及这条边是否一定在最小割集中. Sol ...
- 有屏幕的地方就有BadApple!!
Bad Apple!! MV仅由黑白两色组成,如此高的对比度致使它可以在非常廉价由单片机驱动的屏幕上播放,所以,就有了“有屏幕的地方就有Bad Apple!” 原MV链接,没有看过的同学先看一眼吧—— ...