博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
POJ 1269 Intersecting Lines(判断两直线位置关系)
阅读量:6458 次
发布时间:2019-06-23

本文共 3421 字,大约阅读时间需要 11 分钟。

 

题目传送门:

 

Description

We all know that a pair of distinct points on a plane defines a line and that a pair of lines on a plane will intersect in one of three ways: 1) no intersection because they are parallel, 2) intersect in a line because they are on top of one another (i.e. they are the same line), 3) intersect in a point. In this problem you will use your algebraic knowledge to create a program that determines how and where two lines intersect. 
Your program will repeatedly read in four points that define two lines in the x-y plane and determine how and where the lines intersect. All numbers required by this problem will be reasonable, say between -1000 and 1000. 

Input

The first line contains an integer N between 1 and 10 describing how many pairs of lines are represented. The next N lines will each contain eight integers. These integers represent the coordinates of four points on the plane in the order x1y1x2y2x3y3x4y4. Thus each of these input lines represents two lines on the plane: the line through (x1,y1) and (x2,y2) and the line through (x3,y3) and (x4,y4). The point (x1,y1) is always distinct from (x2,y2). Likewise with (x3,y3) and (x4,y4).

Output

There should be N+2 lines of output. The first line of output should read INTERSECTING LINES OUTPUT. There will then be one line of output for each pair of planar lines represented by a line of input, describing how the lines intersect: none, line, or point. If the intersection is a point then your program should output the x and y coordinates of the point, correct to two decimal places. The final line of output should read "END OF OUTPUT".

Sample Input

50 0 4 4 0 4 4 05 0 7 6 1 0 2 35 0 7 6 3 -6 4 -32 0 2 27 1 5 18 50 3 4 0 1 2 2 5

Sample Output

INTERSECTING LINES OUTPUTPOINT 2.00 2.00NONELINEPOINT 2.00 5.00POINT 1.07 2.20END OF OUTPUT

 

题目大意:

  给你两条线段求这两条线段的位置关系(平行,重合,相交),若相交还要求出交点坐标

解题思路:

  判断两直线位置关系

 

#include
#include
#include
#include
#define eps 1e-6#define sgn(x) (fabs(x) < eps ? 0 : ((x) < 0 ? -1 : 1))using namespace std;struct point{ double x, y; point(double a = 0, double b = 0) { x = a, y = b; } 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; }};struct line{ point s,e; line(){} line(point a,point b) { s = a;e = b; } ///判断两直线位置关系,res返回相交点坐标 pair
operator &(const line &b)const { point res = s; if(sgn((s-e)^(b.s-b.e)) == 0) { if(sgn((b.s-s)^(b.e-s)) == 0) return make_pair(res,0);//两直线重合 else return make_pair(res,1);//两直线平行 } 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,2);//有交点 }};int main(){ int T; point ans; line l1,l2; scanf("%d",&T); printf("INTERSECTING LINES OUTPUT\n"); while(T--) { scanf("%lf%lf%lf%lf%lf%lf%lf%lf",&l1.s.x,&l1.s.y, &l1.e.x,&l1.e.y,&l2.s.x,&l2.s.y,&l2.e.x,&l2.e.y); pair
ans =l1&l2; if( ans.second == 2) printf("POINT %.2f %.2f\n",ans.first.x,ans.first.y); else if(ans.second == 1) printf("NONE\n"); else printf("LINE\n"); } printf("END OF OUTPUT\n"); return 0;}
View Code

 

转载于:https://www.cnblogs.com/l999q/p/9549348.html

你可能感兴趣的文章
多线程编程之Windows环境下创建新线程
查看>>
CentOS 7使用systemctl如何补全服务名称
查看>>
Unity3D NGUI 给button按钮添加单间事件
查看>>
密码的校验.大小写字母,数字,特殊字符中的至少3种
查看>>
ios 不同sdk4.3 6.0版本号,关于方法的兼容性的通用方法
查看>>
Webstorm常用快捷键备忘
查看>>
js滚动加载到底部
查看>>
Virtualbox 虚拟机网络不通
查看>>
java概念基础笔记整理
查看>>
leetcode124二叉树最大路径和
查看>>
AngularJS笔记整理 内置指令与自定义指令
查看>>
shell与正则表达式
查看>>
第三篇:白话tornado源码之请求来了
查看>>
JQUERY AJAX请求
查看>>
超级账本Fabric区块链用弹珠游戏Marbles 部署
查看>>
数据分析--数字找朋友
查看>>
18年selenium3+python3+unittest自动化测试教程(下)
查看>>
memcache数据库和redis数据库的区别(理论)
查看>>
我的友情链接
查看>>
MyBatis+Spring结合
查看>>