呵呵哒。WA了无数次,一开始想的办法最终发现都有缺陷。首先需要知道:

1)线段不相交,一定面积为0

2)有一条线段与X轴平行,面积一定为0

3)线段相交,但是能接水的三角形上面线段把下面的线段完全覆盖。

(1),(2)的情况简单,主要是解决(3)。下面对(3)进行讨论,如下图所示,设p1,p2是两线段各自位置较高的点,p0为两线段的交点,向量e是三角形p0p1p2的关于边p1p2的外侧法向量。则当e的终点位于第1,2象限时才会有积水,3,4象限是没有的。判断e的方向可以根据它与(p0p1+p0p2)的点积,e与(p0p1+p0p2)的点积总是大于0的。

#define _CRT_SECURE_NO_DEPRECATE
#include<iostream>
#include<cmath>
#include<algorithm>
using namespace std;
const double PI = acos(-1.0);
const int N = ;
const double EPS = 1e-;//实数精度
//点结构类型
struct Point{
double x, y;
Point(double a = , double b = ){ x = a; y = b; }
};
//线段结构类型
struct LineSeg{
Point s, e;
LineSeg(){};
LineSeg(Point a, Point b) : s(a), e(b){}
};
struct Line{
double a, b, c;
};
Point operator-(Point a, Point b){
return Point(a.x - b.x, a.y - b.y);
}
//重载==,判断点a,b是否相等
bool operator==(Point a, Point b){
return abs(a.x - b.x) < EPS&&abs(a.y - b.y) < EPS;
}
//比较实数r1与r2的大小关系
int RlCmp(double r1, double r2 = ){
if (abs(r1 - r2) < EPS)
return ;
return r1>r2 ? : -;
}
//返回向量p1-p0和p2-p0的叉积
double Cross(Point p0, Point p1, Point p2){
Point a = p1 - p0;
Point b = p2 - p0;
return a.x*b.y - b.x*a.y;
}
//判断线段L1与线段L2是否相交(包括交点在线段上)
bool Intersect(LineSeg L1, LineSeg L2){
//排斥实验和跨立实验
return max(L1.s.x, L1.e.x) >= min(L2.s.x, L2.e.x)
&& min(L1.s.x, L1.e.x) <= max(L2.s.x, L2.e.x)
&& max(L1.s.y, L1.e.y) >= min(L2.s.y, L2.e.y)
&& min(L1.s.y, L1.e.y) <= max(L2.s.y, L2.e.y)
&& Cross(L1.s, L1.e, L2.s)*Cross(L1.s, L1.e, L2.e) <=
&& Cross(L2.s, L2.e, L1.s)*Cross(L2.s, L2.e, L1.e) <= ;
}
Line MakeLine(Point a, Point b){
Line L;
L.a = (b.y - a.y);
L.b = (a.x - b.x);
L.c = (b.x*a.y - a.x*b.y);
if (L.a < ){ //保准x系数大于等于0
L.a = -L.a;
L.b = -L.b;
L.c = -L.c;
}
return L;
}
//判直线X,Y是否相交,相交返回true和交点
bool LineIntersect(Line X, Line Y, Point&P){
double d = X.a*Y.b - Y.a*X.b;
if (d == ) //直线平行或者重合
return false;
P.x = (X.b*Y.c - Y.b*X.c) / d;
P.y = (X.c*Y.a - Y.c*X.a) / d;
return true;
}
Point HighPoint(Point a, Point b){
return a.y > b.y ? a : b;
}
Point LowPoint(Point a, Point b){
return a.y < b.y ? a : b;
}
double Dot(Point a, Point b){
return a.x*b.x + a.y*b.y;
}
double Area(LineSeg L1, LineSeg L2){
if (!Intersect(L1, L2))
return ; //不相交
Line X = MakeLine(L1.s, L1.e);
Line Y = MakeLine(L2.s, L2.e);
if (RlCmp(X.a*Y.a) == ) //有一条直线与x平行
return ;
Point inter;
LineIntersect(X, Y, inter); //计算交点
double y = min(max(L1.e.y, L1.s.y), max(L2.e.y, L2.s.y));
double x1 = -(X.b*y + X.c) /X.a;
double x2 = -(Y.b*y + Y.c) / Y.a;
Point p1(x1, y), p2(x2, y);
double area = abs(Cross(inter, p1, p2) / ); //计算面积
if (RlCmp(X.b*Y.b) == ) //有一条线与Y轴平行
return area;
double k1 = -X.a / X.b; //X的斜率
double k2 = -Y.a / Y.b; //Y的斜率
Point high = HighPoint(HighPoint(L1.s, L1.e),HighPoint(L2.s, L2.e));
Point low = LowPoint(HighPoint(L1.s, L1.e), HighPoint(L2.s, L2.e));
if (RlCmp(high.y - low.y) == )
return area;
if (RlCmp(high.x - low.x) == )
return ;
double k = -(high.x - low.x) / (high.y - low.y);
Point mid((high.x + low.x) / , (high.y + low.y) / );
Point op = mid - inter;
Point ans;
if (RlCmp(Dot(op, Point(, k))) >= )
ans = Point(, k);
else
ans = Point(-, -k);
if ((ans.x > && ans.y > || (ans.x< && ans.y>)))
return area;
else
return ;
}
int main(){
int T;
double a, b, c, d;
scanf("%d", &T);
while (T--){
scanf("%lf%lf%lf%lf", &a, &b, &c, &d);
LineSeg L1(Point(a, b), Point(c, d));
scanf("%lf%lf%lf%lf", &a, &b, &c, &d);
LineSeg L2(Point(a, b), Point(c, d));
double area = Area(L1, L2);
printf("%.2lf\n", area);
}
return ;
}

Poj2826 An Easy Problem的更多相关文章

  1. poj2826 An Easy Problem?!【计算几何】

    含[三点坐标计算面积].[判断两线段是否有交点].[求线段交点]模板   An Easy Problem?! Time Limit: 1000MS   Memory Limit: 65536K Tot ...

  2. poj2826 An Easy Problem?!(计算几何)

    传送门 •题意 两根木块组成一个槽,给定两个木块的两个端点 雨水竖直下落,问槽里能装多少雨水, •思路 找不能收集到雨水的情况 我们令线段较高的点为s点,较低的点为e点 ①两条木块没有交点 ②平行或重 ...

  3. UVA-11991 Easy Problem from Rujia Liu?

    Problem E Easy Problem from Rujia Liu? Though Rujia Liu usually sets hard problems for contests (for ...

  4. An easy problem

    An easy problem Time Limit:3000MS     Memory Limit:32768KB     64bit IO Format:%I64d & %I64u Sub ...

  5. UVa 11991:Easy Problem from Rujia Liu?(STL练习,map+vector)

    Easy Problem from Rujia Liu? Though Rujia Liu usually sets hard problems for contests (for example, ...

  6. POJ 2826 An Easy Problem?!

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

  7. hdu 5475 An easy problem(暴力 || 线段树区间单点更新)

    http://acm.hdu.edu.cn/showproblem.php?pid=5475 An easy problem Time Limit: 8000/5000 MS (Java/Others ...

  8. 【暑假】[实用数据结构]UVa11991 Easy Problem from Rujia Liu?

    UVa11991 Easy Problem from Rujia Liu?  思路:  构造数组data,使满足data[v][k]为第k个v的下标.因为不是每一个整数都会出现因此用到map,又因为每 ...

  9. HDU 5475 An easy problem 线段树

    An easy problem Time Limit: 1 Sec Memory Limit: 256 MB 题目连接 http://acm.hdu.edu.cn/showproblem.php?pi ...

随机推荐

  1. 用sqlmap跑post型注入

    bugku-成绩单 题目地址 手工注入: ①看到题目,分别提交1,2,3,出现不同的成绩单,可见参数我们是可以控制,通过POST的方式. ②我们尝试输入1 and 1=1#和1 and 1=2#发现不 ...

  2. jeakins配置邮件通知,附带解决535报错:authentication failed,如果发现测试邮件可以发出,项目构成无法发出邮件,请开启SSL认证,端口号改为(465),qq邮箱、163邮箱通用

    535报错解决方案:调用163邮箱服务器来发送邮件,我们需要开启POP3/SMTP服务,这时163邮件会让我们设置客户端授权码,这个授权码替代上面代码部分的passwd即可成功发送邮件 如果设置的邮箱 ...

  3. [oldboy-django][2深入django]登录注册页面验证码

    后台生成随机验证码 #验证码生成 - 在login.html 中有一张验证码图片 设置图片的src url, 相当于发送一次get请求,返回的内容为图片渲染的内容 <div class=&quo ...

  4. jdk -version could not open jvm.cfg 的解决办法

    java 时出现 could not open jvm.cfg 的解决办法     问题描述: 重装JDK并更变目录后,出现JAVA -VERSION  出现could not open jvm.cf ...

  5. “取出数据表中第10条到第20条记录”的sql语句+selecttop用法

    1.首先,select top用法: 参考问题 select top n * from和select * from的区别 select * from table -- 取所有数据,返回无序集合 sel ...

  6. cf 843 A Sorting by Subsequences [建图]

    题面: 传送门 思路: 这道题乍一看有点难 但是实际上研究一番以后会发现,对于每一个位置只会有一个数要去那里,还有一个数要离开 那么只要把每个数和他将要去的那个位置连起来,构成了一个每个点只有一个入边 ...

  7. canvas图片跨域问题

    canvas的drawImage使用跨域图片时候,会报错,解决方法如下: 1. 使用base64替换跨域图片 如果图片不大,且只有几张,可以使用base64,来代替跨域引用图片. 2. 设置image ...

  8. Bzoj3652 大新闻

    Time Limit: 10 Sec  Memory Limit: 512 MBSec  Special JudgeSubmit: 215  Solved: 112 Description Input ...

  9. BZOJ【1625】宝石手镯

    1625: [Usaco2007 Dec]宝石手镯 Time Limit: 5 Sec  Memory Limit: 64 MBSubmit: 1007  Solved: 684[Submit][St ...

  10. svn没有"对号"等符号

    [问题描述]调整svn建立好了服务端.安装客户端也检出成功了.但是就是没有对号符号. [解决方案]右键菜单,设置,里面有“图标覆盖”这个选项,把你的文件夹加入进去,然后注销windows用户重新登陆