判断两条直线的位置关系 POJ 1269 Intersecting Lines

两条直线可能有三种关系:1.共线     2.平行(不包括共线)    3.相交。 那给定两条直线怎么判断他们的位置关系呢。还是用到向量的叉积

例题:POJ 1269

题意:这道题是给定四个点p1, p2, p3, p4,直线L1,L2分别穿过前两个和后两个点。来判断直线L1和L2的关系

这三种关系一个一个来看:

1. 共线。 如果两条直线共线的话,那么另外一条直线上的点一定在这一条直线上。所以p3在p1p2上,所以用get_direction(p1, p2, p3)来判断p3相对于p1p2的关系,同理判断p4与p1p2的关系。

2. 平行。 如果两条直线平行的话,分别找出直线L1和L2的向量,那么向量的叉积等于0。其中L1的向量是 p2-p1, L2的向量是p4-p3

3. 相交。 这种情况是最复杂的一中情况,不过有了向量这一工具也不复杂了。

假设p0(x0, y0)是两条直线的交点,那么

p0p1×p2p0=0

p0p3×p4p0=0   (p0p1表示向量p0p1)

将p0代入之后结果得到方程组

x0*(y2-y1) + y0*(x1 - x2) + x2*y1 - x1*y2 = 0

x0*(y4-y3) + y0*(x3 - x4) + x4*y3 - x3*y4 = 0

这是典型的一元二次方程组,联立可得到x和y,

对于普通的二元一次方程组

a1x + b1y + c1 = 0

a2x + b2y + c2 = 0

的解为

x = (b1*c2 - b2*c1) / (b2*a1 - b1 * a2)

y = (a1*c2 - c1*a2) / (a2*b1 - a1 * b2)

所以最后可得出x和y也就是让求的交点坐标。代码如下

/*************************************************************************
    > File Name: poj_1269_chaji.cpp
    > Author:
    > Mail:
    > Created Time: 2015年04月01日 星期三 21时44分32秒
 ************************************************************************/

#include<iostream>
#include <cstdio>
using namespace std;
struct point{
    int x, y;
};
point p1, p2, p3, p4;
int get_direction(point a, point b, point c)//判断点与直线的关系
{
    point t1, t2;
    t1.x = c.x - a.x; t1.y = c.y - a.y;
    t2.x = b.x - a.x; t2.y = b.y - a.y;
    return (t1.x * t2.y - t1.y * t2.x);
}
int on_line(point a, point b)//判断是否共线
{
    return (a.x * b.y - a.y * b.x);
}
int main()
{
    int n;
    scanf("%d", &n);
    puts("INTERSECTING LINES OUTPUT");
    while (n--)
    {
        scanf("%d %d %d %d %d %d %d %d", &p1.x, &p1.y, &p2.x, &p2.y, &p3.x, &p3.y, &p4.x, &p4.y);
        if (get_direction(p1, p2, p3) == 0 && get_direction(p1, p2, p4) == 0)
        {
            printf("LINE\n");
            continue;
        }
        point v1, v2;
        v1.x = p2.x - p1.x; v1.y = p2.y - p1.y;//直线1的向量
        v2.x = p4.x - p3.x; v2.y = p4.y - p3.y;//直线2的向量
        if (on_line(v1, v2) == 0)
        {
            printf("NONE\n");
            continue;
        }
        double a1, b1, c1, a2, b2, c2, x, y;//求交点过程
        a1 = (p2.y - p1.y) * 1.0;
        b1 = (p1.x - p2.x) * 1.0;
        c1 = (p2.x * p1.y - p1.x * p2.y) * 1.0;
        a2 = (p4.y - p3.y) * 1.0;
        b2 = (p3.x - p4.x) * 1.0;
        c2 = (p3.y * p4.x - p4.y * p3.x) * 1.0;
        x = (b1 * c2 - b2 * c1) / (b2 * a1 - b1 * a2);
        y = (a1 * c2 - c1 * a2) / (a2 * b1 - a1 * b2);
        printf("POINT %.2f %.2f\n", x, y);
    }
    puts("END OF OUTPUT");
    return 0;
}

时间: 2024-10-15 05:21:21

判断两条直线的位置关系 POJ 1269 Intersecting Lines的相关文章

简单几何(直线位置) POJ 1269 Intersecting Lines

题目传送门 题意:判断两条直线的位置关系,共线或平行或相交 分析:先判断平行还是共线,最后就是相交.平行用叉积判断向量,共线的话也用叉积判断点,相交求交点 /************************************************ * Author :Running_Time * Created Time :2015/10/24 星期六 09:08:55 * File Name :POJ_1269.cpp *********************************

POJ1269:Intersecting Lines(判断两条直线的关系)

题目:POJ1269 题意:给你两条直线的坐标,判断两条直线是否共线.平行.相交,若相交,求出交点. 思路:直线相交判断.如果相交求交点. 首先先判断是否共线,之后判断是否平行,如果都不是就直接求交点了. #include <iostream> #include <string.h> #include <stdio.h> #include <algorithm> #include <math.h> #include <queue> #

判断两条直线是否相交点

#pragma mark ------------ 判断两条直线是否相交 + (BOOL)checkLineIntersection:(CGPoint)p1 p2:(CGPoint)p2 p3:(CGPoint)p3 p4:(CGPoint)p4 {     CGFloat denominator = (p4.y - p3.y) * (p2.x - p1.x) - (p4.x - p3.x) * (p2.y - p1.y);          if (denominator == 0.0f) {

poj1039——计算几何 求直线与线段交点,判断两条直线是否相交

poj1039——计算几何  求直线与线段交点,判断两条直线是否相交 Pipe Time Limit: 1000MS   Memory Limit: 10000K Total Submissions: 9439   Accepted: 2854 Description The GX Light Pipeline Company started to prepare bent pipes for the new transgalactic light pipeline. During the de

POJ 1269 Intersecting Lines(判断直线相交)

题目地址:POJ 1269 直接套模板就可以了...实在不想自己写模板了...写的又臭又长....不过这题需要注意的是要先判断是否有直线垂直X轴的情况. 代码如下: #include <iostream> #include <cstdio> #include <string> #include <cstring> #include <stdlib.h> #include <math.h> #include <ctype.h>

POJ 1269 Intersecting Lines(线段相交,水题)

Intersecting Lines 大意:给你两条直线的坐标,判断两条直线是否共线.平行.相交,若相交,求出交点. 思路:线段相交判断.求交点的水题,没什么好说的. struct Point{ double x, y; } ; struct Line{ Point a, b; } A, B; double xmult(Point p1, Point p2, Point p) { return (p1.x-p.x)*(p2.y-p.y)-(p1.y-p.y)*(p2.x-p.x); } bool

poj 1269 Intersecting Lines(判相交交点与平行)

http://poj.org/problem?id=1269 Time Limit: 1000MS   Memory Limit: 10000K Total Submissions: 10379   Accepted: 4651 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

POJ 1269 Intersecting Lines (判断直线位置关系)

题目链接:POJ 1269 Problem 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 becau

POJ 1269 Intersecting Lines【判断直线相交】

题意:给两条直线,判断相交,重合或者平行 思路:判断重合可以用叉积,平行用斜率,其他情况即为相交. 求交点: 这里也用到叉积的原理.假设交点为p0(x0,y0).则有: (p1-p0)X(p2-p0)=0 (p3-p0)X(p2-p0)=0 展开后即是 (y1-y2)x0+(x2-x1)y0+x1y2-x2y1=0 (y3-y4)x0+(x4-x3)y0+x3y4-x4y3=0 将x0,y0作为变量求解二元一次方程组. 假设有二元一次方程组 a1x+b1y+c1=0; a2x+b2y+c2=0