POJ 2826 两线段关系求面积

题意:两个木板接雨,问你能解多少雨,也就是面积。

这题考虑几种情况:1,有线段平行x轴,接不到;2,两线段没交点,接不到;3,取两线段高的端点如果比两线段交点低也接不到;4,最不容易想到的,两木板在同侧并且上面的木板盖住了下面的木板也接不到。这四条单独判断然后求三角形面积就可以了。

#include <iostream>
#include<cstdio>
#include<cstring>
#include<algorithm>
#include<cmath>
using namespace std;
typedef double PointType;
struct point
{
    PointType x,y;
};
PointType Direction(point pi,point pj,point pk) //判断向量PiPj在向量PiPk的顺逆时针方向 +顺-逆0共线
{
    return (pj.x-pi.x)*(pk.y-pi.y)-(pk.x-pi.x)*(pj.y-pi.y);
}
bool On_Segment(point pi,point pj,point pk)
{
    if(pk.x>=min(pi.x,pj.x)&&pk.x<=max(pi.x,pj.x)&&pk.y>=min(pi.y,pj.y)&&pk.y<=max(pi.y,pj.y))
        return 1;
    return 0;
}
bool Segment_Intersect(point p1,point p2,point p3,point p4)
{
    PointType d1=Direction(p3,p4,p1),d2=Direction(p3,p4,p2),d3=Direction(p1,p2,p3),d4=Direction(p1,p2,p4);
    if(((d1>0&&d2<0)||(d1<0&&d2>0))&&((d3>0&&d4<0)||(d3<0&&d4>0)))
        return 1;
    if(d1==0&&On_Segment(p3,p4,p1))
        return 1;
    if(d2==0&&On_Segment(p3,p4,p2))
        return 1;
    if(d3==0&&On_Segment(p1,p2,p3))
        return 1;
    if(d4==0&&On_Segment(p1,p2,p4))
        return 1;
    return 0;
}
point jd;
int Jiaodian(point a,point b,point c,point d)//平行返回0 重合返回1 相交返回2
{
    double A1=b.y-a.y,A2=d.y-c.y,B1=a.x-b.x,B2=c.x-d.x;
    double C1=b.y*(b.x-a.x)-b.x*(b.y-a.y),C2=d.y*(d.x-c.x)-d.x*(d.y-c.y);
    if(A1*B2==B1*A2)//平行或重合
    {
        if(A2*C1==A1*C2&&B1*C2==B2*C1)
            return 1;
        return 0;
    }
    jd.x=(B1*C2-B2*C1)/(B2*A1-B1*A2);
    jd.y=(A1*C2-A2*C1)/(A2*B1-A1*B2);
    return 2;
}
double dis(point a,point b)
{
    return (a.x-b.x)*(a.x-b.x)+(a.y-b.y)*(a.y-b.y);
}
int main()
{
    int t;
    point data[2][2],a,b;
    cin>>t;
    while(t--)
    {
        cin>>data[0][0].x>>data[0][0].y>>data[0][1].x>>data[0][1].y;
        cin>>data[1][0].x>>data[1][0].y>>data[1][1].x>>data[1][1].y;
        if(data[0][0].y==data[0][1].y||data[1][0].y==data[1][1].y)
        {
            cout<<"0.00"<<endl;
            continue;
        }
        if(!Segment_Intersect(data[0][0],data[0][1],data[1][0],data[1][1]))
        {
            cout<<"0.00"<<endl;
            continue;
        }
        if(Jiaodian(data[0][0],data[0][1],data[1][0],data[1][1])!=2)
        {
            cout<<"0.00"<<endl;
            continue;
        }
        a=data[0][0].y>data[0][1].y?data[0][0]:data[0][1];
        b=data[1][0].y>data[1][1].y?data[1][0]:data[1][1];
        if(jd.y>=a.y||jd.y>=b.y)
        {
            cout<<"0.00"<<endl;
            continue;
        }
        double disa=dis(a,jd),disb=dis(b,jd);
        if(disa<disb)
            swap(a,b);
        point temp,upjd,upb;
        upb.x=b.x,upb.y=9999999;
        upjd.x=jd.x,upjd.y=jd.y+1;
        double ua=Direction(jd,upjd,a),ub=Direction(jd,upjd,b),uc=Direction(jd,a,b);
        if((ua>0&&ub>0&&uc>0||ua<0&&ub<0&&uc<0)&&Segment_Intersect(b,upb,a,jd))
        {
            cout<<"0.00"<<endl;
            continue;
        }
        a=data[0][0].y>data[0][1].y?data[0][0]:data[0][1];
        b=data[1][0].y>data[1][1].y?data[1][0]:data[1][1];
        upjd=jd;
        if(a.y>=b.y)
        {
            temp.y=b.y;
            temp.x=b.x+1;
            Jiaodian(temp,b,data[0][0],data[0][1]);
            printf("%.2f\n",fabs(Direction(upjd,b,jd))/2);
        }
        else
        {
            temp.y=a.y;
            temp.x=a.x+1;
            Jiaodian(temp,a,data[1][0],data[1][1]);
            printf("%.2f\n",fabs(Direction(upjd,a,jd))/2);
        }
    }
    return 0;
}
时间: 2024-09-11 23:15:05

POJ 2826 两线段关系求面积的相关文章

POJ 1066 判断线段相交

题意:有个考古队进金字塔里盗墓,大小100*100,样图是一个俯视图,给了财宝坐标,又给了各个墙.题目规定考古队在每面墙的中点处开一个洞,这样就避免了两墙交点的情况,求最小的凿墙数目. 很明显,枚举连接四面两个墙之间中点与宝藏的线段,求出这种线段与墓里墙相交的最小值.其实可以不用枚举中点,直接用墙的端点与宝藏相连的线段就行,细想一想可以想明白. #include <iostream> #include<cstdio> #include<cstring> #include

任意两个多边形求并的算法并用编程实现

问题描述 任意两个多边形求并的算法并用编程实现 任意两个多边形求并的算法并用编程实现 任意两个多边形求并的算法并用编程实现 解决方案 求任意多边形的内点的算法 解决方案二: 不知道求并什么意思?是面积还是什么?面积的话两者相加减去更公共部分就可以了. 解决方案三: 不知道具体要求什么 ....

log4j输出日志了两遍,求高手帮忙看看

问题描述 log4j输出日志了两遍,求高手帮忙看看 我的项目是用log4j.xml配置的,配置了一个root,然后又配置了一个logger,nane=test,root和logger输出到不同的日志文件中,使用Logger.getLogger("test").info("test").结果两个日志文件都输出了日志,我的期望是只在test那个logger里输出,怎么做才能实现呢?

已知三角形的三条中线长度求面积

题意:给出三角形的三条中线长度求面积. #include <iostream> #include<cstdio> #include<cstring> #include<algorithm> #include<cmath> using namespace std; int main() { double n,m,p; while(cin>>n>>m>>p) { if((m+n+p)*(m+p-n)*(m+n-p)

c++-两个排序问题求大神指教!!

问题描述 两个排序问题求大神指教!! 1.Problem 在英文中,若某些单词由相同的字母组成,且字母的个数均相等,那么这些单词互为Anagram.例如note. tone是一组Anagrams,top.opt.pot也是一组Anagrams. 现在给出一个字典,要求输出字典中没有Anagram的单词,输出时,按单词的字典序从小到大输出.注意,判断是否为Anagram时,请忽略单词间的大小写,例如,noTE.tOnE被视作时一组Anagrams. Input 输入数据有若干行,每行有若干单词,每

double 类型保留小数点后两位,求大神指导

问题描述 double 类型保留小数点后两位,求大神指导 图片下边为对应的后台代码. 图片中的合计怎么 小数点后边那么多位?求大神详解. private double heji1=0; private double heji2=0; private double heji3=0; private double heji4=0; public String get() throws Exception { this.init(); ruKu = dao.get(id); return SUCCES

hdu1394 线段树求最小逆序数

hdu 1394 http://acm.hdu.edu.cn/showproblem.php?pid=1394 用线段树求逆序数,例如要求x的逆序数只需要访问(x+1,n)段有多少个数,就是x的逆序数.还有就是求最小逆序数的时候有个巧妙的想法,当把x放入数组的后面,此时的逆序数应该为x没放入最后面之前的逆序总数加上(n-x)再减去(x-1):sum = sum+(n-x[i])-(x[i]-1). 线段树 #include<cstdio> #include<algorithm> #

poj 1276 背包问题 编译错误 求大神看看 英汉题意如下

问题描述 poj 1276 背包问题 编译错误 求大神看看 英汉题意如下 Description A Bank plans to install a machine for cash withdrawal. The machine is able to deliver appropriate @ bills for a requested cash amount. The machine uses exactly N distinct bill denominations, say Dk, k=

eclipse-初学Android创建的第一个App出现Layout界面显示不出以及两个警告 求各位大神帮忙!

问题描述 初学Android创建的第一个App出现Layout界面显示不出以及两个警告 求各位大神帮忙! 1.This version of the rendering library is more recent than your version of ADT plug-in. Please update ADT plug-in 2.[2015-07-21 21:46:26 - appcompat_v7] WARNING: unable to write jarlist cache file