UVA 10652 凸包问题
#include <cstdio>
#include <cstring>
#include <algorithm>
#include <cmath>
#include <iostream>
using namespace std; const double eps = 1e-;
const int N = ;
int dcmp(double x)
{
if(abs(x) < eps) return ;
if(x < ) return -;
else return ;
} struct Point{
double x,y;
Point(double x = ,double y = ):x(x),y(y){}
bool operator<(const Point &m)const{
return dcmp(x - m.x) < || (dcmp(x - m.x) == && dcmp(y - m.y) < );
} bool operator==(const Point &m)const{
return dcmp(x - m.x) == && dcmp(y - m.y) == ;
}
}; Point ch[N<<],p[N<<]; typedef Point Vector; Vector operator+(Vector a , Vector b)
{
return Vector(a.x + b.x , a.y + b.y);
} Vector operator-(Point a , Point b)
{
return Vector(a.x - b.x , a.y - b.y);
} Vector operator*(Vector a , double b)
{
return Vector(a.x * b , a.y * b);
} Vector operator/(Vector a , double b)
{
return Vector(a.x / b , a.y/b);
} double Cross(Vector a , Vector b)
{
return a.x * b.y - a.y * b.x;
} Vector GetReverse(Vector a , double rad)
{
double x = a.x * cos(rad) - a.y * sin(rad);
double y = a.x * sin(rad) + a.y * cos(rad);
return Vector(x,y);
}
//计算多边形面积
double ConvexPolygonArea(Point *p , int n)
{
double area = ;
for(int i=;i<n-;i++){
area += Cross(p[i] - p[] , p[i+] - p[]);
}
return area / ;
}
//求形成凸包的最大范围
int ConvexHull(Point *p, int n, Point *ch) //凸包
{
sort(p, p+n);
n = unique(p, p+n) - p; //去重
int m = ;
for(int i = ; i < n; i++)
{
while(m > && Cross(ch[m-]-ch[m-], p[i]-ch[m-]) <= ) m--;
ch[m++] = p[i];
}
int k = m;
for(int i = n-; i >= ; i--)
{
while(m > k && Cross(ch[m-]-ch[m-], p[i]-ch[m-]) <= ) m--;
ch[m++] = p[i];
}
if(n > ) m--;
return m;
}
int main()
{
// freopen("test.in","rb",stdin); int T,n;
double x,y,w,h,_angle; //_angle表示度数,自己还要转化成弧度
scanf("%d",&T);
while(T--){
scanf("%d",&n);
int k=;
double area = ;
for(int i=;i<n;i++)
{
scanf("%lf%lf%lf%lf%lf",&x,&y,&w,&h,&_angle);
area += w*h;
double rad = -_angle * acos(-) / ;
Point o(x,y);
//cout<<" rad: "<<rad<<endl;
p[k++] = GetReverse(Vector(-w/ , h/),rad) + o;
p[k++] = GetReverse(Vector(w/ , h/),rad) + o;
p[k++] = GetReverse(Vector(w/ , -h/),rad) + o;
p[k++] = GetReverse(Vector(-w/ , -h/),rad) + o;
} int m = ConvexHull(p , k , ch);
double sumOfArea = ConvexPolygonArea(ch , m);
double ans = area / sumOfArea * ; printf("%.1f %%\n",ans);
}
return ;
}
UVA 10652 凸包问题的更多相关文章
- 简单几何(向量旋转+凸包+多边形面积) UVA 10652 Board Wrapping
题目传送门 题意:告诉若干个矩形的信息,问他们在凸多边形中所占的面积比例 分析:训练指南P272,矩形面积长*宽,只要计算出所有的点,用凸包后再求多边形面积.已知矩形的中心,向量在原点参考点再旋转,角 ...
- UVa 10652 (简单凸包) Board Wrapping
题意: 有n块互不重叠的矩形木板,用尽量小的凸多边形将它们包起来,并输出并输出木板总面积占凸多边形面积的百分比. 分析: 几乎是凸包和多边形面积的裸题. 注意:最后输出的百分号前面有个空格,第一次交P ...
- UVA 10652 Board Wrapping(凸包)
题目链接:http://acm.hust.edu.cn/vjudge/problem/viewProblem.action?id=32286 [思路] 凸包 根据角度与中心点求出长方形所有点来,然后就 ...
- Uva 10652 Board Wrapping(计算几何之凸包+点旋转)
题目大意:给出平面上许多矩形的中心点和倾斜角度,计算这些矩形面积占这个矩形点形成的最大凸包的面积比. 算法:GRAHAM,ANDREW. 题目非常的简单,就是裸的凸包 + 点旋转.这题自己不会的地方就 ...
- UVA 10652 Board Wrapping(凸包)
The small sawmill in Mission, British Columbia, hasdeveloped a brand new way of packaging boards for ...
- uva 10652 Board Wrapping (计算几何-凸包)
Problem B Board Wrapping Input: standard input Output: standard output Time Limit: 2 seconds The sma ...
- UVA 10652 Board Wrapping(二维凸包)
传送门 刘汝佳<算法竞赛入门经典>P272例题6包装木板 题意:有n块矩形木板,你的任务是用一个面积尽量小的凸多边形把它们抱起来,并计算出木板占整个包装面积的百分比. 输入:t组数据,每组 ...
- UVa 10652(旋转、凸包、多边形面积)
要点 凸包显然 长方形旋转较好的处理方式就是用中点的Vector加上旋转的Vector,然后每个点都扔到凸包里 多边形面积板子求凸包面积即可 #include <cstdio> #incl ...
- UVa 10256 凸包简单应用
题目链接:http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem& ...
随机推荐
- 配置Ubuntu16.04第02步:更改镜像源,更新系统
Ubuntu 16.04下载软件速度有点慢,因为默认的是从国外下载软件,那就更换到国内比较好的快速更新源(就是这些软件所在的服务器),一般直接百度Ubuntu更新源就能出来一大堆,这时候最好是找和自己 ...
- Service官方教程(10)Bound Service的生命周期函数
Managing the Lifecycle of a Bound Service When a service is unbound from all clients, the Android sy ...
- Java中static修饰符
public class StaticTest { static int i ; static int m=30; int j ; int k=25; static{ i=10; System.out ...
- .NET 之ViewState的本质
ViewState是如何实现这些功能. 以名值对的方式来存控件的值,和Hashtable的结构类似: 跟踪那些ViewState中出现改变的值,以便对这些脏数据(dirty)进行进一步的处理: 通过序 ...
- 短视频SDK用于旅游行业
超级简单易用的短视频SDK来自RDSDK.COM.锐动天地为开发者提供短视频编辑.视频直播.特效.录屏.编解码.视频转换,等多种解决方案,涵盖PC.iOS.Android多平台.以市场为导向,不断打磨 ...
- 修改xampp的mysql默认密码和端口
修改MySQL默认密码 MySQL 的“root”用户默认状态是没有密码的,所以在 PHP 中您可以使用 mysql_connect("localhost","root& ...
- sql创建发送邮件账号
ALTER PROCEDURE dbo.sx_pro_autoEmail_account AS begin Declare @my_profile_name varchar(50) Declare @ ...
- 关于AMAZON SES设置的一些要点
1.首先要有一个企业邮箱,如果没有可以去腾讯(http://exmail.qq.com/onlinesell/intro)申请一个,网易也有,不过解析几次搞了两天都是未通过,腾讯几分钟就好了 企业邮箱 ...
- Android(java)学习笔记197:ContentProvider使用之内容观察者02
下面通过3个应用程序之间的交互说明一下内容观察者: 一. 如下3个应用程序为相互交互的: 二.交互逻辑图: 三.具体代码: 1. 16_数据库工程: (1)数据库帮助类BankDBOpenHelp ...
- CREATE OPERATOR CLASS - 定义一个新的操作符类
SYNOPSIS CREATE OPERATOR CLASS name [ DEFAULT ] FOR TYPE data_type USING index_method AS { OPERATOR ...