zoukankan      html  css  js  c++  java
  • POJ 2826 An Easy Problem?!

    An Easy Problem?!
    Time Limit: 1000MS   Memory Limit: 65536K
    Total Submissions: 7837   Accepted: 1145

    Description

    It's raining outside. Farmer Johnson's bull Ben wants some rain to water his flowers. Ben nails two wooden boards on the wall of his barn. Shown in the pictures below, the two boards on the wall just look like two segments on the plane, as they have the same width. 

    Your mission is to calculate how much rain these two boards can collect. 

    Input

    The first line contains the number of test cases. 
    Each test case consists of 8 integers not exceeding 10,000 by absolute value, x1y1x2y2x3y3x4y4. (x1y1), (x2y2) are the endpoints of one board, and (x3y3), (x4y4) are the endpoints of the other one. 

    Output

    For each test case output a single line containing a real number with precision up to two decimal places - the amount of rain collected. 

    Sample Input

    2
    0 1 1 0
    1 0 2 1
    
    0 1 2 1
    1 0 1 2
    

    Sample Output

    1.00
    0.00
    

    Source

    POJ Monthly--2006.04.28, Dagger@PKU_RPWT
     
     
     
     
     
    需要想到好几种特殊情况。
     
    线段不相交,结果为0.
    有一条线段平行于x轴结果也为0;
     
    尤其是第三种情况,很难想到。
     
    #include <stdio.h>
    #include <math.h>
    #include <algorithm>
    #include <string.h>
    #include <math.h>
    using namespace std;
    
    const double eps = 1e-8;
    int sgn(double x)
    {
        if(fabs(x) < eps)return 0;
        if(x < 0)return -1;
        else return 1;
    }
    struct Point
    {
        double x,y;
        Point(){}
        Point(double _x,double _y)
        {
            x = _x;y = _y;
        }
        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;
        }
        //点积
        double operator *(const Point &b)const
        {
            return x*b.x + y*b.y;
        }
    };
    struct Line
    {
        Point s,e;
        Line(){}
        Line(Point _s,Point _e)
        {
            s = _s;e = _e;
        }
        //两直线相交求交点
        //第一个值为0表示直线重合,为1表示平行,为0表示相交,为2是相交
        //只有第一个值为2时,交点才有意义
        pair<int,Point> operator &(const Line &b)const
        {
            Point res = s;
            if(sgn((s-e)^(b.s-b.e)) == 0)
            {
                if(sgn((s-b.e)^(b.s-b.e)) == 0)
                    return make_pair(0,res);//重合
                else return make_pair(1,res);//平行
            }
            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(2,res);
        }
    };
    
    //*判断线段相交
    bool inter(Line l1,Line l2)
    {
        return
        max(l1.s.x,l1.e.x) >= min(l2.s.x,l2.e.x) &&
        max(l2.s.x,l2.e.x) >= min(l1.s.x,l1.e.x) &&
        max(l1.s.y,l1.e.y) >= min(l2.s.y,l2.e.y) &&
        max(l2.s.y,l2.e.y) >= min(l1.s.y,l1.e.y) &&
        sgn((l2.s-l1.e)^(l1.s-l1.e))*sgn((l2.e-l1.e)^(l1.s-l1.e)) <= 0 &&
        sgn((l1.s-l2.e)^(l2.s-l2.e))*sgn((l1.e-l2.e)^(l2.s-l2.e)) <= 0;
    }
    
    int main()
    {
        int x1,y1,x2,y2,x3,y3,x4,y4;
        int T;
        Line l1,l2;
        scanf("%d",&T);
        while(T--)
        {
            scanf("%d%d%d%d%d%d%d%d",&x1,&y1,&x2,&y2,&x3,&y3,&x4,&y4);
            l1 = Line(Point(x1,y1),Point(x2,y2));
            l2 = Line(Point(x3,y3),Point(x4,y4));
            if(sgn(l1.s.y-l1.e.y)==0 || sgn(l2.s.y-l2.e.y) == 0)
            {
                printf("0.00
    ");
                continue;
            }
            if(sgn(l1.s.y-l1.e.y) < 0)swap(l1.s,l1.e);
            if(sgn(l2.s.y-l2.e.y) < 0)swap(l2.s,l2.e);
            if(inter(l1,l2) == false)
            {
                printf("0.00
    ");
                continue;
            }
            //口被封掉的情况
            if(inter(Line(l1.s,Point(l1.s.x,100000)),l2) )
            {
                printf("0.00
    ");
                continue;
            }
            //口被封掉
            if(inter(Line(l2.s,Point(l2.s.x,100000)),l1) )
            {
                printf("0.00
    ");
                continue;
            }
            pair<int,Point>pr;
            pr = l1 & l2;
            Point p = pr.second;
            double ans1;
            pr = l1 & Line(Point(100000,l2.s.y),l2.s);
            Point p1 = pr.second;
            ans1 = fabs( (l2.s-p)^(p1-p) )/2;
            double ans2;
            pr = l2 & Line(Point(100000,l1.s.y),l1.s);
            Point p2 = pr.second;
            ans2 = fabs( (l1.s-p)^(p2-p) )/2;
            printf("%.2lf
    ",min(ans1,ans2));
        }
        return 0;
    }
     
     
     
  • 相关阅读:
    Python,文件修改
    Python,文件
    driver.find_element_by_xpath.clear()无法清空输入框默认值
    对于隐藏性质的非标准的动态 id 的下拉框,如何定位和选中
    driver.find_element_by_xpath() 带参数时的写法
    不能聚焦元素问题 WebDriverException: Message: unknown error: cannot focus element
    firefox56 版本中的 Selenium IDE 无法导出脚本问题
    元素无法定位问题 NoSuchElementException: Message: no such element: Unable to locate element 解决方法
    selenium python 脚本不支持中文问题
    关于 chromedriver、IEDriverServer、geckodriver 驱动器的几项注意点
  • 原文地址:https://www.cnblogs.com/kuangbin/p/3192511.html
Copyright © 2011-2022 走看看