计算几何的题目, 学cv的要做一下。poj 地址: http://poj.org/problem?id=1410
题意:判断一个直线段,是否与一个矩形有相交点。
解决方案: 判断矩形的每一条边是否与直线段相交, 则归结为判断直线段相交问题,然后判断两条线段是否相交的条件,是看每一条线段的两个点,是否分布在另一条直线的两端。 利用斜率可以求解。
// // 1410
#include <iostream>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <string>
#include <cmath>
#include <vector>
using namespace std; struct Node{
double x,y;
}; int Orientation(Node& a, Node& b, Node& c){
double val = (a.y- b.y)*(b.x-c.x) - (a.x-b.x)*(b.y-c.y);
if(fabs(val -0) < 1e-8){
return 0;
}else if(val > 0){
return 1;
}else{
return -1;
}
} bool onScope(Node& a, Node& b, Node& c){
if(c.x <=max(a.x, b.x) && c.x >=min(a.x, b.x) \
&& c.y <=max(a.y, b.y) && c.y >= min(a.y, b.y)){
return true;
}else{
return false;
}
} bool LineIntersect(Node& a, Node& b, Node& c, Node& d){
int val1 = Orientation(a, b, c);
int val2 = Orientation(a, b, d);
int val3 = Orientation(c, d, a);
int val4 = Orientation(c, d, b);
if( val1 != val2 && val3 != val4){
return true;
}
if(val1 == 0 && onScope(a, b, c)){ return true; }
if(val2 == 0 && onScope(a, b, d)){ return true; }
if(val3 == 0 && onScope(c, d, a)){ return true; }
if(val4 == 0 && onScope(c, d, b)){ return true; }
return false;
} int main(){
freopen("in.txt", "r", stdin); int test_num;
Node start, end, lt, rb;
bool flag;
scanf("%d", &test_num);
while(test_num--){
scanf("%lf %lf %lf %lf", &start.x, &start.y, &end.x, &end.y);
scanf("%lf %lf %lf %lf", <.x, <.y, &rb.x, &rb.y);
Node rt, lb;
rt.x = rb.x; rt.y = lt.y;
lb.x = lt.x; lb.y = rb.y;
if(LineIntersect(start, end, lt, rt) || LineIntersect(start, end, rt, rb) \
|| LineIntersect(start, end, rb, lb) || LineIntersect(start, end, lb, lt)){
printf("T\n");
}else{
if(min(start.x, end.x)>min(lt.x, rb.x) && max(start.x, end.x)<max(lt.x, rb.x) \
&& min(start.y, end.y)>min(lt.y, rb.y) && max(start.y, end.y)<max(lt.y, rb.y)){
printf("T\n");
}else{
printf("F\n");
}
}
}
return 0;
}
reference: http://www.geeksforgeeks.org/check-if-two-given-line-segments-intersect/
poj-1410 Intersection的更多相关文章
-
[POJ 1410] Intersection(线段与矩形交)
题目链接:http://poj.org/problem?id=1410 Intersection Time Limit: 1000MS Memory Limit: 10000K Total Sub ...
-
POJ 1410 Intersection (计算几何)
题目链接:POJ 1410 Description You are to write a program that has to decide whether a given line segment ...
-
POJ 1410 Intersection(判断线段交和点在矩形内)
Intersection Time Limit: 1000MS Memory Limit: 10000K Total Submissions: 9996 Accepted: 2632 Desc ...
-
POJ 1410 Intersection(线段相交&;amp;&;amp;推断点在矩形内&;amp;&;amp;坑爹)
Intersection 大意:给你一条线段,给你一个矩形,问是否相交. 相交:线段全然在矩形内部算相交:线段与矩形随意一条边不规范相交算相交. 思路:知道详细的相交规则之后题事实上是不难的,可是还有 ...
-
POJ 1410 Intersection (线段和矩形相交)
题目: Description You are to write a program that has to decide whether a given line segment intersect ...
-
poj 1410 Intersection (判断线段与矩形相交 判线段相交)
题目链接 Intersection Time Limit: 1000MS Memory Limit: 10000K Total Submissions: 12040 Accepted: 312 ...
-
POJ 1410	 Intersection --几何,线段相交
题意: 给一条线段,和一个矩形,问线段是否与矩形相交或在矩形内. 解法: 判断是否在矩形内,如果不在,判断与四条边是否相交即可.这题让我发现自己的线段相交函数有错误的地方,原来我写的线段相交函数就是单 ...
-
简单几何(线段相交) POJ 1410 Intersection
题目传送门 题意:一个矩形和一条线段,问是否有相交 分析:考虑各种情况.坑点:给出的矩形的两个端点是无序的,还有线段完全在矩形内也算相交 /****************************** ...
-
POJ 1410 Intersection(计算几何)
题目大意:题目意思很简单,就是说有一个矩阵是实心的,给出一条线段,问线段和矩阵是否相交解题思路:用到了线段与线段是否交叉,然后再判断线段是否在矩阵里面,这里要注意的是,他给出的矩阵的坐标明显不是左上和 ...
-
POJ 1410 Intersection 数据错误
题目要求判断一条线段和一个矩形是否相交,或者是否在矩形里面(题目好像没说?) 思路就是直接暴力判断和矩形四条边是否相交,和线段的坐标是否在矩形的坐标范围即可. 然后题目的数据,(xleft,ytop) ...
随机推荐
-
ChatRichTextBox : RichTextBox
using System; using System.Collections.Generic; using System.Text; using System.Windows.Forms; using ...
-
php实现SESSION跨域
稍微大一点的网站,通常都会有不只一个服务器,每个服务器运行着不同的功能模块或者不同的子系统,他们使用不同的二级域名,比如www.a.com.i.a.com.bbs.a.com.而一个整体性强的网站,用 ...
-
Firefox about
在firefox的地址栏输入about:about,然后看一下各个链接.有的链接有具体的用途,有的链接疯言疯语,并无软用. about:about集中了火狐浏览器的全部用户界面,平时常见的prefer ...
-
mysql 基础语法
以下为自己学习mysql 的一些笔记,以方便查询 目录 一. ALTER的 语法 二. 表的完整性约束 三. 索引的操作(mysql 数据库支持至少 16 个索引) 四. 视图的操作 五. 触发器的操 ...
-
Android -- The Manifest File
Before the Android system can start an app component, the system must know that the component exists ...
-
iOS开发:创建真机调试证书 分类: ios相关 2015-04-10 10:22 149人阅读 评论(0) 收藏
关于苹果iOS开发,笔者也是从小白过来的,经历过各种困难和坑,其中就有关于开发证书,生产证书,in_house证书,add_Hoc证书申请过程中的问题,以及上架发布问题.今天就着重说一下关于针对于苹果 ...
-
linux-umount挂载点无法卸载:device is busy(解决)
umount不了的原因一般是由于有程序有用户在占用 解决方法: 1. 首先查找谁在占用:#fuser /mnt/nfs 得到进程号. 2. 查找进程:#ps –ef|grep 进程 ...
-
git的一些补充点
git rm和 rm的区别 git rm是删除文件, 同时加入到git的跟踪管理中,做一个登记,那么在git commit的时候, 会把这次删除作为一次修改提交上去, 否则, 在 git log中你就 ...
-
oracle 中top-n的使用
对于ms sqlserver数据库中可以直接使用top(n)提取前N 个结果,而oracle中并不能直接使用的.oracle中提供了对于提取前N 条的结果的方法 那就是用行编号 例如:select ...
- General PE format layout