博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[POJ 1269]Intersecting Lines
阅读量:5055 次
发布时间:2019-06-12

本文共 3577 字,大约阅读时间需要 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

题目大意

给定n组数据,每组2条直线,求直线关系,关系有如下:1.重合,2.平行,3.相交于一点。

题解

Point1.判断平行和重合:两向量的叉积为$0$;

  Sub1.判断重合,取某一向量上的一点,与另一条向量的一点组成新向量。把该条新向量与任意一条向量叉积,为$0$则重合;

  Sub1.判断平行,取某一向量上的一点,与另一条向量的一点组成新向量。把该条新向量与任意一条向量叉积,不为$0$则平行;

Point2.求交点;

  Sub1.若一条直线斜率不存在,交点横坐标肯定是这条直线在$x$轴上的截距。我们有另一条直线两点式:,我们将横坐标$x_0$代入,求出纵坐标$y_0$。

  Sub2.斜率均存在,如图:,即求$P$。不理解的详请:。

  或者直接令$tmp={S_{ΔABD}\over {S_{ΔABD}+S_{ΔABC}}}$;

  则$x_P=(x_C-x_D)×tmp+x_D$,$y_P=(y_C-y_D)×tmp+y_D$;证明同理。

 

1 #include
2 #include
3 #include
4 #include
5 #include
6 #include
7 #include
8 #include
9 #include
10 #include
11 #include
12 #include
13 #include
14 #define LL long long15 #define RE register16 #define IL inline17 using namespace std;18 const int N=500;19 20 struct Point21 {22 double x,y;23 Point (){}24 Point (double _x,double _y){x=_x;y=_y;}25 Point operator - (const Point &b)26 const{27 return Point(x-b.x,y-b.y);28 }29 double operator * (const Point &b)30 const{31 return x*b.y-y*b.x;32 }33 }a,b,c,d;34 int n;35 36 int main()37 {38 scanf("%d",&n);39 printf("INTERSECTING LINES OUTPUT\n");40 while (n--)41 {42 scanf("%lf%lf%lf%lf%lf%lf%lf%lf",43 &a.x,&a.y,&b.x,&b.y,&c.x,&c.y,&d.x,&d.y);44 if ((a-b)*(c-d)==0)45 {46 if ((a-b)*(c-b)==0) printf("LINE\n");47 else printf("NONE\n");48 continue;49 }50 printf("POINT ");51 if (a.x==b.x) printf("%.2lf %.2lf\n",a.x,(a.x-c.x)*(d.y-c.y)/(d.x-c.x)+c.y);52 else if (c.x==d.x) printf("%.2lf %.2lf\n",c.x,(c.x-a.x)*(b.y-a.y)/(b.x-a.x)+a.y);53 else54 {55 double tmp=(d-a)*(b-a);56 tmp=tmp/(tmp+(b-a)*(c-a));57 printf("%.2lf %.2lf\n",(c.x-d.x)*tmp+d.x,(c.y-d.y)*tmp+d.y);58 }59 }60 printf("END OF OUTPUT\n");61 return 0;62 }

 

转载于:https://www.cnblogs.com/NaVi-Awson/p/7267573.html

你可能感兴趣的文章
iOS 数组排序
查看>>
第三节
查看>>
PHP结合MYSQL记录结果分页呈现(比较实用)
查看>>
Mysql支持的数据类型
查看>>
openSuse beginner
查看>>
Codeforces 620E(线段树+dfs序+状态压缩)
查看>>
Windows7中双击py文件运行程序
查看>>
Market entry case
查看>>
bzoj1230 开关灯 线段树
查看>>
LinearLayout
查看>>
学习python:day1
查看>>
css3动画属性
查看>>
第九次团队作业-测试报告与用户使用手册
查看>>
Equal Sides Of An Array
查看>>
CentOS笔记-用户和用户组管理
查看>>
Mongodb 基本命令
查看>>
Qt中QTableView中加入Check列实现
查看>>
“富豪相亲大会”究竟迷失了什么?
查看>>
控制文件的备份与恢复
查看>>
返回代码hdu 2054 A==B?
查看>>