zoukankan      html  css  js  c++  java
  • POJ 1269 Intersecting Lines(判断两直线位置关系)

    题目传送门:POJ 1269 Intersecting Lines

    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

    5
    0 0 4 4 0 4 4 0
    5 0 7 6 1 0 2 3
    5 0 7 6 3 -6 4 -3
    2 0 2 27 1 5 18 5
    0 3 4 0 1 2 2 5
    

    Sample Output

    INTERSECTING LINES OUTPUT
    POINT 2.00 2.00
    NONE
    LINE
    POINT 2.00 5.00
    POINT 1.07 2.20
    END OF OUTPUT

    题目大意:

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

    解题思路:

      判断两直线位置关系

    #include<cstdio>
    #include<cmath>
    #include<algorithm>
    #include<cstring>
    #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<point,int> 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
    ");
        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<point,int> ans =l1&l2;
            if( ans.second == 2) printf("POINT %.2f %.2f
    ",ans.first.x,ans.first.y);
            else if(ans.second == 1) printf("NONE
    ");
            else printf("LINE
    ");
        }
        printf("END OF OUTPUT
    ");
        return 0;
    }
    View Code
  • 相关阅读:
    【css系列】创建网页加载进度条
    【大数据系列】apache hive 官方文档翻译
    【大数据系列】问题汇总
    【大数据系列】hive修改默认的derby数据库
    【大数据系列】hive安装及启动
    【大数据系列】MapReduce详解
    【大数据系列】基于MapReduce的数据处理 SequenceFile序列化文件
    【大数据系列】windows下连接Linux环境开发
    【大数据系列】常用命令
    【大数据系列】hadoop脚本分析
  • 原文地址:https://www.cnblogs.com/l999q/p/9549348.html
Copyright © 2011-2022 走看看