poj 2826

这题虽然以前就看过,这会算是亲自下手了一发。

殊不知,里边精度问题还是棒哭了。

1.sb这个点真心判得还无语。刚才这不还明明已经确定了点之间的关系么。。。

2.fabs 和abs。。。我太连清了

3.求两个直线连接的时候,如果用之前通过求相交的点,这种点是不可靠的。

4.+eps,听大神的话就是对的

多谢lab104_yifan大神带我走题库,刷题,膜

#include <cstdio>
#include <cstring>
#include <cmath>
#include <algorithm>
using namespace std;

struct Point {
    double x, y;
    Point() {}
    Point(double x, double y) {
        this->x = x;
        this->y = y;
    }
    void read() {
        scanf("%lf%lf", &x, &y);
    }
};

typedef Point Vector;

Vector operator + (Vector A, Vector B) {
    return Vector(A.x + B.x, A.y + B.y);
}

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);
}

Vector operator / (Vector A, double p) {
    return Vector(A.x / p, A.y / p);
}

bool operator < (const Point& a, const Point& b) {
    return a.x < b.x || (a.x == b.x && a.y < b.y);
}

const double eps = 1e-8;

int dcmp(double x) {
    if (fabs(x) < eps) return 0;
    else return x < 0 ? -1 : 1;
}

bool operator == (const Point& a, const Point& b) {
    return dcmp(a.x - b.x) == 0 && dcmp(a.y - b.y) == 0;
}

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 Angle(Vector A, Vector B) {return acos(Dot(A, B) / Length(A) / Length(B));} //向量夹角
double Cross(Vector A, Vector B) {return A.x * B.y - A.y * B.x;} //叉积
double Area2(Point A, Point B, Point C) {return Cross(B - A, C - A);} //有向面积

struct Line {
    Point v, p;
    Line() {}
    Line(Point v, Point p) {
        this->v = v;
        this->p = p;
    }
    Point point(double t) {
        return v + p * t;
    }
};

//向量旋转
Vector Rotate(Vector A, double rad) {
    return Vector(A.x * cos(rad) - A.y * sin(rad), A.x * sin(rad) + A.y * cos(rad));
}

Vector AngleBisector(Point p, Vector v1, Vector v2){//给定两个向量,求角平分线
    double rad = Angle(v1, v2);
    return Rotate(v1, dcmp(Cross(v1, v2)) * 0.5 * rad);
}

//判断3点共线
bool LineCoincide(Point p1, Point p2, Point p3) {
    return dcmp(Cross(p2 - p1, p3 - p1)) == 0;
}

//判断向量平行
bool LineParallel(Vector v, Vector w) {
    return Cross(v, w) == 0;
}

//判断向量垂直
bool LineVertical(Vector v, Vector w) {
    return Dot(v, w) == 0;
}

//计算两直线交点,平行,重合要先判断
Point GetLineIntersection(Point P, Vector v, Point Q, Vector w) {
    Vector u = P - Q;
    double t = Cross(w, u) / Cross(v, w);
    return P + v * t;
}

//点到直线距离
double DistanceToLine(Point P, Point A, Point B) {
    Vector v1 = B - A, v2 = P - A;
    return fabs(Cross(v1, v2)) / Length(v1);
}

//点到线段距离
double DistanceToSegment(Point P, Point A, Point B) {
    if (A == B) return Length(P - A);
    Vector v1 = B - A, v2 = P - A, v3 = P - B;
    if (dcmp(Dot(v1, v2)) < 0) return Length(v2);
    else if (dcmp(Dot(v1, v3)) > 0) return Length(v3);
    else return fabs(Cross(v1, v2)) / Length(v1);
}

//点在直线上的投影点
Point GetLineProjection(Point P, Point A, Point B) {
    Vector v = B - A;
    return A + v * (Dot(v, P - A) / Dot(v, v));
}

//线段相交判定(规范相交)
bool SegmentProperIntersection(Point a1, Point a2, Point b1, Point b2) {
    double c1 = Cross(a2 - a1, b1 - a1), c2 = Cross(a2 - a1, b2 - a1),
            c3 = Cross(b2 - b1, a1 - b1), c4 = Cross(b2 - b1, a2 - b1);
    return dcmp(c1) * dcmp(c2) < 0 && dcmp(c3) * dcmp(c4) < 0;
}

//可以不规范相交
bool SegmentProperIntersection2(Point a1, Point a2, Point b1, Point b2) {
    double c1 = Cross(a2 - a1, b1 - a1), c2 = Cross(a2 - a1, b2 - a1),
            c3 = Cross(b2 - b1, a1 - b1), c4 = Cross(b2 - b1, a2 - b1);
    return max(a1.x, a2.x) >= min(b1.x, b2.x) &&
    max(b1.x, b2.x) >= min(a1.x, a2.x) &&
    max(a1.y, a2.y) >= min(b1.y, b2.y) &&
    max(b1.y, b2.y) >= min(a1.y, a2.y) &&
    dcmp(c1) * dcmp(c2) <= 0 && dcmp(c3) * dcmp(c4) <= 0;
}

//判断点在线段上, 不包含端点
bool OnSegment(Point p, Point a1, Point a2) {
    return dcmp(Cross(a1 - p, a2 - p)) == 0 && dcmp(Dot(a1 - p, a2 - p)) < 0;
}

//n边形的面积
double PolygonArea(Point *p, int n) {
    double area = 0;
    for (int i = 1; i < n - 1; i++)
        area += Cross(p[i] - p[0], p[i + 1] - p[0]);
    return area / 2;
}

int t;
Point p[4];

double solve()
{
    if(LineParallel(p[0]-p[1],p[2]-p[3]))return 0.0;
    if(!SegmentProperIntersection2(p[0],p[1],p[2],p[3]))return 0.0;
    Point x=GetLineIntersection(p[0],p[1]-p[0],p[2],p[3]-p[2]);
    if(p[0].y>x.y&&p[2].y>x.y){
        if(dcmp(p[0].x-x.x)*dcmp(p[2].x-x.x)>0){
            if(dcmp(fabs(p[0].x-x.x)-fabs(p[2].x-x.x))>=0){
                Point sb = GetLineIntersection(p[1], p[0] - p[1], p[2], Vector(0, 1));//竟然不走这一步就wa了
                if (sb.y > p[2].y)//直接一个横纵坐标分析似乎并不需要dcmp
                    return 0.0;
            }
        }
        Point tmp=GetLineIntersection(p[1],p[0]-p[1],p[2],Point(1,0));//p[1]p[0]比p[1],x更准确
        return fabs(Area2(p[2],x,tmp)/2);//这里貌似fabs和abs都可以
    }
    return 0.0;
}

int main()
{
    scanf("%d",&t);
    while(t--){
        for(int i=0;i<4;i++)
            p[i].read();
        if(p[0].y<p[1].y)swap(p[0],p[1]);
        if(p[2].y<p[3].y)swap(p[2],p[3]);
        if(p[0].y<p[2].y){
            swap(p[0],p[2]);swap(p[1],p[3]);
        }
        printf("%.2f\n",solve()+eps);
    }
    return 0;
}




















  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值