4667 Building Fence 解题报告
题意:给n个圆和m个三角形,且保证互不相交,用一个篱笆把他们围起来,求最短的周长是多少。
解法1:在每个圆上均匀的取2000个点,求凸包周长就可以水过。
解法2:求出所有圆之间的外公切线的切点,以及过三角形每个顶点的的直线和圆的切点,和三角形的三个顶点。这些点做凸包确定篱笆边上的图形。凸包的边和圆弧之和即为所求。求圆弧长度的时候要判断是优弧还是劣弧。用叉积判断两个向量的方向关系即可。
//Time:218MS
//Memory:860K
include <cstdio>
#include <cstring>
#include <cmath>
#include <algorithm>
#include <iostream>
using namespace std;
const double EPS = 1e-10;
const double PI = acos(-1.0);
const int MAXN = 55; int dcmp(double x)
{
if(fabs(x)<EPS) return 0;
return x<0? -1:1;
}
double sqr(double x)
{
return x*x;
}
struct Point{
double x,y;
bool tp;
int id;
Point(){}
Point(double a,double b):x(a),y(b){}
Point operator +(const Point &a)const{return Point(x+a.x,y+a.y);}
Point operator -(const Point &a)const{return Point(x-a.x,y-a.y);}
Point operator *(double k) const{return Point(x*k,y*k);}
Point operator /(double k) const{return Point(x/k,y/k);}
bool operator <(const Point &a)const
{
return dcmp(x-a.x)<0||(dcmp(x-a.x)==0&&dcmp(y-a.y)<0);
}
bool operator ==(const Point &a)const
{
return dcmp(x-a.x)==0&&dcmp(y-a.y)==0;
}
Point trunc(double d)
{
double dist(Point ,Point);
double len = dist(*this,Point(0,0));
return Point(x*d/len,y*d/len);
}
Point rotate(double a)
{
return Point(x*cos(a)-y*sin(a),y*cos(a)+x*sin(a));
}
void input(){scanf("%lf%lf",&x,&y);}
};
struct Circle{
Point o;
double r;
Circle(){}
Circle(Point a,double b):o(a),r(b){}
double area(){return sqr(r)*PI;}
double len(double ang){return r*ang;}
};
struct Tri{
Point p[3];
};
typedef Point Vector;
double cross(Vector a,Vector b)
{
return a.x*b.y-a.y*b.x;
} double dot(Vector a,Vector b)
{
return a.x*b.x+a.y*b.y;
}
double length(Vector a)
{
return sqrt(dot(a,a));
}
double dist(Point a,Point b)
{
return length(a-b);
}
double v_angle(Vector a,Vector b)
{
return acos(dot(a,b)/length(a)/length(b));
} int ConvexHull(Point *p, int n, Point *ch)
{
sort(p, p+n);
n = unique(p, p+n) - p;
int m = 0;
for(int i = 0; i < n; i++)
{
while(m > 1 && dcmp(cross(ch[m-1]-ch[m-2], p[i]-ch[m-2])) <= 0) m--;
ch[m++] = p[i];
}
int k = m;
for(int i = n-2; i >= 0; i--)
{
while(m > k && dcmp(cross(ch[m-1]-ch[m-2], p[i]-ch[m-2])) <= 0) m--;
ch[m++] = p[i];
}
if(n > 1) m--;
return m;
}
Vector rotate(Vector a,double rad)
{
Vector c;
c.x = a.x*cos(rad)-a.y*sin(rad);
c.y = a.x*sin(rad)+a.y*cos(rad);
return c;
}
void get_ocmt(Circle c1,Circle c2,Point &s1, Point &e1,Point &s2,Point &e2)
{
double l = dist(c1.o,c2.o);
double d = fabs(c1.r-c2.r);
double theta = acos(d/l);
//if(dcmp(c1.r-c2.r)>0) swap(c1,c2);
Vector vec = c1.o-c2.o;
vec = vec.trunc(c1.r);
s1 = c1.o+rotate(vec,theta);
s2 = c1.o+vec.rotate(-theta);
vec = vec.trunc(c2.r);
e1 = c2.o+vec.rotate(theta);
e2 = c2.o+vec.rotate(-theta);
}
void get_pc(Circle c, Point p,Point &s1,Point &s2)
{
Vector u = p-c.o; double dist = length(u);
Point v = c.o+u/dist*c.r;
double ang = PI/2-asin(c.r/dist);
s1 = rotate(v-c.o,-ang)+c.o;
s2 = rotate(v-c.o,ang)+c.o;
}
Point p[55*55*55],ch[55*55*55];
int main()
{
//freopen("/home/qitaishui/code/in.txt","r",stdin);
int n,m,pn,chn;
Circle c[MAXN];
Tri tri[MAXN]; while(scanf("%d%d",&n,&m)!=EOF)
{
for(int i = 0; i < n;i++)
{
c[i].o.input();
scanf("%lf",&c[i].r);
}
if(n==1&&m==0)
{
printf("%.6f\n",c[0].len(2*PI));
continue;
}
for(int i = 0; i < m; i++)
for(int j = 0; j < 3; j++)
tri[i].p[j].input();
pn = 0;
for(int i = 0; i < n; i++)
for(int j = i+1; j < n; j++)
{
if(dcmp(c[i].r-c[j].r)>0)
get_ocmt(c[j],c[i],p[pn+1],p[pn],p[pn+3],p[pn+2]);
else
get_ocmt(c[i],c[j],p[pn],p[pn+1],p[pn+2],p[pn+3]);
p[pn].tp = 0,p[pn].id = i;
p[pn+1].tp = 0,p[pn+1].id = j;
p[pn+2].tp = 0,p[pn+2].id = i;
p[pn+3].tp = 0,p[pn+3].id = j;
pn+=4;
}
for(int i = 0; i < n; i++)
for(int j = 0; j < m; j++)
for(int k = 0; k <3; k++)
{
get_pc(c[i],tri[j].p[k],p[pn],p[pn+1]);
p[pn].tp = 0,p[pn].id = i;
p[pn+1].tp = 0,p[pn+1].id = i;
pn+=2;
} for(int j = 0; j < m; j++)
for(int k = 0; k <3; k++)
{
p[pn] = tri[j].p[k];
p[pn].tp = 1, p[pn].id = j;
pn++;
} chn = ConvexHull(p,pn,ch);
//cout<<chn<<endl;
int top=0;
bool flag = 0;
double ans = 0,cir=0;
for(int i = 0; i <chn; i++)
{
if(ch[i].tp==0&&ch[(i+1)%chn].tp==0&&ch[i].id==ch[(i+1)%chn].id)
{
int tmp=ch[i].id;
double ang;
ang = v_angle(ch[i]-c[tmp].o,ch[(i+1)%chn]-c[tmp].o);
if(dcmp(cross(ch[i]-c[tmp].o,ch[(i+1)%chn]-c[tmp].o))<0)
ang = 2*PI-ang;
ans=ans+c[tmp].len(ang);
}
else
ans+=length(ch[i]-ch[(i+1)%chn]);
} printf("%.6f\n",ans);
}
return 0;
}
4667 Building Fence 解题报告的更多相关文章
- HDU 4667 Building Fence(2013多校7 1002题 计算几何,凸包,圆和三角形)
Building Fence Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65535/65535 K (Java/Others)To ...
- HDU 4667 Building Fence(求凸包的周长)
A - Building Fence Time Limit:1000MS Memory Limit:65535KB 64bit IO Format:%I64d & %I64u ...
- 【LeetCode】276. Paint Fence 解题报告(C++)
作者: 负雪明烛 id: fuxuemingzhu 个人博客:http://fuxuemingzhu.cn/ 目录 题目描述 题目大意 解题方法 动态规划 日期 题目地址:https://leetco ...
- 洛谷 画栅栏Painting the Fence 解题报告
P2205 画栅栏Painting the Fence 题目描述 \(Farmer\) \(John\) 想出了一个给牛棚旁的长围墙涂色的好方法.(为了简单起见,我们把围墙看做一维的数轴,每一个单位长 ...
- codeforces B. Color the Fence 解题报告
题目链接:http://codeforces.com/problemset/problem/349/B 题目意思:给定v升的颜料和9个需要花费ad 升的颜料,花费ad 升的颜料意味着得到第d个数字,现 ...
- codeforces B.Fence 解题报告
题目链接:http://codeforces.com/problemset/problem/363/B 题目意思:给定整数n和k,需要从n个数中找出连续的k个数之和最小,输出这连续的k个数中的第一个数 ...
- HDU 4667 Building Fence
题意: 给n个圆和m个三角形,且保证互不相交,用一个篱笆把他们围起来,求最短的周长是多少. 做法:--水过... 把一个圆均匀的切割成500个点,然后求凸包. 注意:求完凸包,在求周长的时候记得要把圆 ...
- HDU 4667 Building Fence 计算几何 凸包+圆
1.三角形的所有端点 2.过所有三角形的端点对所有圆做切线,得到所有切点. 3.做任意两圆的外公切线,得到所有切点. 对上述所有点求凸包,标记每个点是三角形上的点还是某个圆上的点. 求完凸包后,因为所 ...
- hdu 4667 Building Fence < 计算几何模板>
//大白p263 #include <cmath> #include <cstdio> #include <cstring> #include <string ...
随机推荐
- Codeforces Round #131 (Div. 1) A - Game
A. Game time limit per test 1 second memory limit per test 256 megabytes input standard input output ...
- 读书笔记_Effective_C++_条款三十九:明智而审慎地使用private继承
private继承的意义在于“be implemented in turns of”,这个与上一条款中说的复合模型的第二层含义是相同的,这也意味着通常我们可以在这两种设计方法之间转换,但书上还是更提倡 ...
- 【scrapy】使用方法概要(二)(转)
[请初学者作为参考,不建议高手看这个浪费时间] 上一篇文章里介绍了scrapy的主要优点及linux下的安装方式,此篇文章将简要介绍scrapy的爬取过程,本文大部分内容源于scrapy文档,翻译并加 ...
- Google In-App Billing 实现(内含Unity 实现经验)
实现内购计费 傻逼目录 Adding the AIDL file Updating Your Manifest Creating a ServiceConnection Making In-app ...
- 【docker】docker部署spring boot项目在服务器上
IDE:idea 工具:docker spring boot:2.0.1 ======================================== 简单记录一下流程,以供参考: 第一步:首先得 ...
- oracle 日期相减 转载
转自 http://hi.baidu.com/juanjuan_66/blog/item/cf48554c9331fbe6d62afc6a.html oracle日期相减2012-02-10 12 ...
- 深入理解多线程(一)——Synchronized的实现原理
synchronized,是Java中用于解决并发情况下数据同步访问的一个很重要的关键字.当我们想要保证一个共享资源在同一时间只会被一个线程访问到时,我们可以在代码中使用synchronized关键字 ...
- 容器list使用之erase(其他容器也通用)
今天无论如何要写点东西,算是搞清楚了一点东西吧.有点小小的成就感. 之前在程序里面使用了list容器,其中用到了erase()函数,之前一直没出现问题,这两天突然莫名奇妙.花了点时间,搞清楚了eras ...
- Android之PowerManager&BatteryManager
PowerManager是Android平台中用于管理控制设备电源状态.重启.休眠状态.唤醒等,使用该API会影响到电池的待机时间,所以无非必要,一般不要使用. 在PowerManager中有几个比较 ...
- IOS开发之新浪微博OAuth2
说明:微博开放接口的调用,如发微博.关注等,都是需要获取用户身份认证的.目前微博开放平台用户身份鉴权主要采用的是OAuth2.0.为了方便开发者开发.测试自己的应用. OAuth2.0较1.0相比,整 ...