csu1812
csu1812
题意
求三角形和矩形交的面积。
分析
半平面交。把三角形的三条边当作直线去切割矩形,最后求切割后的多边形面积即可。
code
#include<algorithm>
#include<cstdio>
#include<cmath>
#include<cstring>
using namespace std;
const double eps = 1e-8;
int sgn(double x) { // 误差
if(fabs(x) < eps) return 0;
return x < 0 ? -1 : 1;
}
struct P {
double x, y;
P() {}
P(double x, double y) : x(x), y(y) {}
P operator + (const P p) const {
return P(x + p.x, y + p.y);
}
P operator - (const P p) const {
return P(x - p.x, y - p.y);
}
P operator * (const double tt) const {
return P(x * tt, y * tt);
}
P operator / (const double tt) const {
return P(x / tt, y / tt);
}
bool operator < (const P &p) const { // 坐标排序规则
return x < p.x || (x == p.x && y < p.y);
}
double dot(const P &p) const { // 点积
return x * p.x + y * p.y;
}
double det(const P &p) const { // 叉积
return x * p.y - y * p.x;
}
};
P tri[4], rec[5];
P b[5], c[5];
double A, B, C;
int m;
double cross(P o, P p, P q) { // 向量 op 和 oq 的叉积
return (p.x - o.x) * (q.y - o.y) - (q.x - o.x) * (p.y - o.y);
}
void init() { // 顺时针排序
if(sgn(cross(tri[0], tri[1], tri[2])) < 0)
reverse(tri, tri + 3);
}
// 得到直线 pq : A * x + B * y + C = 0
// f(x,y) = A * x + B * y + C
// f(x,y) < 0 表示点(x,y)在直线pq的左边(此时可把pq当做向量)
void getLine(P p, P q) {
A = q.y - p.y;
B = p.x - q.x;
C = q.det(p);
}
// 直线 A * x + B * y + C = 0 与 直线 pq 的交点
P intersect(P p, P q) {
double u = fabs(A * p.x + B * p.y + C);
double v = fabs(A * q.x + B * q.y + C);
return P((p.x * v + q.x * u) / (u + v), (p.y * v + q.y * u) / (u + v));
}
double cal(P p) {
return sgn(A * p.x + B * p.y + C);
}
void cut() {
int tmpm = 0;
for (int i = 0; i < m; i++) {
if (cal(b[i]) <= 0) { // 判断是否在多边形内,这里指点在直线A * x + B * y + C = 0的左边或直线上
c[tmpm++] = b[i];
} else { // 虽然不在多边形内,但是可能和多边形内的点组成的直线与多边形产生新的交点
if (cal(b[(i - 1 + m) % m]) < 0) {
c[tmpm++] = intersect(b[(i - 1 + m) % m], b[i]);
}
if (cal(b[i + 1]) < 0) {
c[tmpm++] = intersect(b[i + 1], b[i]);
}
}
}
for (int i = 0; i < tmpm; i++)
b[i] = c[i];
b[tmpm] = c[0];
m = tmpm;
}
void solve() {
tri[3] = tri[0];
rec[4] = rec[0];
memcpy(b, rec, sizeof rec);
m = 4;
for(int i = 0; i < 3; i++) {
getLine(tri[i], tri[i + 1]);
cut();
}
}
// 求多边形面积 (a[]为多边形的点 n为点的个数)
double polygon_area(P *a, int n) {
a[n] = a[0];
double area = 0;
for(int i = 0; i < n; i++) {
area += a[i].det(a[i + 1]);
}
return fabs(area) / 2;
}
int main() {
double x1, y1, x2, y2, x3, y3, x4, y4;
while(~scanf("%lf%lf%lf%lf%lf%lf%lf%lf", &x1, &y1, &x2, &y2, &x3, &y3, &x4, &y4)) {
tri[0] = P(x1, y1);
tri[1] = P(x2, y1);
tri[2] = P(x1, y2);
init();
rec[0] = P(x3, y3);
rec[1] = P(x4, y3);
rec[2] = P(x4, y4);
rec[3] = P(x3, y4);
solve();
printf("%.8f\n", polygon_area(b, m));
}
return 0;
}
csu1812的更多相关文章
- 【CSU1812】三角形和矩形 【半平面交】
检验半平面交的板子. #include <stdio.h> #include <bits/stdc++.h> using namespace std; #define gg p ...
- 2017年暑假ACM集训日志
20170710: hdu1074,hdu1087,hdu1114,hdu1159,hdu1160,hdu1171,hdu1176,hdu1010,hdu1203 20170711: hdu1231, ...
随机推荐
- operator、explicit与implicit
说这个之前先说下什么叫隐式转换和显示转换 1.所谓隐式转换,就是系统默认的转换,其本质是小存储容量数据类型自动转换为大存储容量数据类型. 例如:float f = 1.0: double d=f:这样 ...
- install ironic-inspector
安装相应的包和组件 yum install openstack-ironic-inspector python-ironic-inspector-client -y 创建user openstack ...
- C# http Post与Get方法控制继电器
---恢复内容开始--- using System; using System.Collections.Generic; using System.Linq; using System.Text; u ...
- webpack + less
使用less需要安装 'style-loader','css-loader','less-loader' 三个loader. 安装之后在webpack.config.js配置 const path = ...
- poj 2151 概率DP(水)
Check the difficulty of problems Time Limit: 2000MS Memory Limit: 65536K Total Submissions: 5750 ...
- java中从实体类中取值会忽略的的问题
在我们java Map中通过get来取值时会忽略的问题是:如果取得一个空值null时,那么.toString()时就会出错,而且不知道是什么原因. 现在我给的具体方法是用条件表达式先判断一下. 例: ...
- J2EE的十三个技术——JSP
简介 JSP,Java Server Page,Java服务器页面.它是在传统的网页HTML文件中插入Java程序段(Scriptlet)和JSP标记,从而形成JSP文件,后缀名为(*.jsp). ...
- SOA与WCF
背景: 高校平台马上就要进入编程阶段了,对于没怎么做过正式项目的我们来说,要学的东西实在太多了.一下子面对这么多学习资料时,我们也不能着急,还是踏踏实实,一个一个地去了解,其实他们都没那么神秘.这篇博 ...
- nginx索引目录配置
为了简单共享文件,有些人使用svn,有些人使用ftp,但是更多得人使用索引(index)功能.apache得索引功能强大,并且也是最常见得,nginx得auto_index实现得目录索引偏少,而且功能 ...
- 【Luogu】P2154虔诚的墓主人(树状数组)
题目链接 这题就是考虑我们有这样一个情况