POJ 1410 Intersection(数据小坑,线段相交)

POJ 1410 Intersection(数据小坑,线段相交)

思路:这道题的数据有点问题,不是严格的按照左上右下给的矩阵坐标,所以要自己进行一个特判,之后就是判断线段是否相交了。

#include<iostream>
#include<cstring>
#include<algorithm>
#include<cmath>
#include<queue>
#include <cstdio>
using namespace std;
#define ll long long
int n;
struct Point
{
    double x,y;
    Point(double x= 0, double y = 0):x(x),y(y){}
}p[1000];
typedef Point Vector;
const int INF = 0x3f3f;
Vector operator-(Point A,Point B)
{
    return Vector(A.x-B.x,A.y-B.y);
}
Vector operator *(Vector A, double p)
{
    return Vector(A.x*p, A.y*p);
}
Vector operator +(Vector A, Vector B){
    return Vector(A.x+B.x, A.y+B.y);
}
Vector operator /(Vector A, double p){return Vector(A.x/p, A.y/p);}
double Dot(Vector A, Vector B){ return A.x*B.x + A.y*B.y;}
double Length(Vector A){ return sqrt(Dot(A, A));}
double Cross(Vector A, Vector B){return A.x*B.y-A.y*B.x;}
double dis(Point a,Point b)
{
    return sqrt((a.x-b.x)*(a.x-b.x) + (a.y-b.y)*(a.y-b.y));
}
const double eps = 1e-6;
int sgn(double x){
    if(fabs(x) < eps)
        return 0;
    if(x < 0)
        return -1;
    return 1;
}
struct Line{
    Point v, p;
    Line(){}
    Line(Point v, Point p):v(v), p(p){}
    Point point(double t){
        return v+(p-v)*t;//·µ»ØµãP = v + (p - v)*t
    }
}line[105000];
int dcmp(double x){
    if(fabs(x) < eps)
        return 0;
    if(x < 0)
        return -1;
    return 1;
}
bool OnSegment(Point p, Point a1, Point a2){
    return dcmp(Cross(a1-p, a2-p)) == 0 && dcmp(Dot(a1-p, a2-p)) < 0;
}
bool SegmentProperIntersection(Point a1, Point a2, Point b1, Point b2){
    double c1 = Cross(a2-a1, b1-a1), c2 = Cross(a2-a1, b2-a1);
    double c3 = Cross(b2-b1, a1-b1), c4 = Cross(b2-b1, a2-b1);
    //if判断控制是否允许线段在端点处相交,根据需要添加
    if(!sgn(c1) || !sgn(c2) || !sgn(c3) || !sgn(c4)){
        bool f1 = OnSegment(b1, a1, a2);
        bool f2 = OnSegment(b2, a1, a2);
        bool f3 = OnSegment(a1, b1, b2);
        bool f4 = OnSegment(a2, b1, b2);
        bool f = (f1|f2|f3|f4);
        return f;
    }
    return (sgn(c1)*sgn(c2) < 0 && sgn(c3)*sgn(c4) < 0);
}
void swap(double &a, double &b)
{
    if(a>b)
    {
        double temp = a;
        a = b;
        b = temp;
    }
}

int main()
{
    int n;
    scanf("%d", &n);
    while(n--)
    {
        double x1, x2, y1, y2;
        Point st, ed;
        scanf("%lf%lf%lf%lf", &st.x, &st.y, &ed.x, &ed.y);
        scanf("%lf%lf%lf%lf",&x1, &y1, &x2, &y2);
        swap(x1,x2);
        swap(y1,y2);

        line[1] = Line(Point(x1,y1), Point(x1,y2));
        line[2] = Line(Point(x2,y1), Point(x2,y2));
        line[3] = Line(Point(x1,y1), Point(x2,y1));
        line[4] = Line(Point(x1,y2), Point(x2,y2));
      

        line[5] = Line(st,ed);
        if(st.x >=x1&&st.x <=x2 && st.y >=y1 && st.y <=y2 && ed.x >=x1 &&ed.x <=x2 && ed.y>=y1 &&ed.y <=y2)
        {
            printf("T\n");
        }
        else
        {
            bool flag = false;
            for(int i = 1;i<=4;i++)
            {
                if(SegmentProperIntersection(line[i].v, line[i].p, line[5].v, line[5].p))
                {

                    flag = true;
                    break;
                }
            }
            if(flag)
                printf("T\n");
            else
                printf("F\n");
        }

    }
    return 0;
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值