博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
HDU 4667 Building Fence(求凸包的周长)
阅读量:6121 次
发布时间:2019-06-21

本文共 1325 字,大约阅读时间需要 4 分钟。

题目链接: 

题意:

给定n个圆。m个三角形求把这些图形所有覆盖的图形的最小的周长。

分析:

刚開始看到就想到了求凸包,但是圆怎么求了?就暴力把圆切割成1000个点然后求凸包就能够了。

水过了。正解是找圆与圆的切点圆与三角形上的点与圆引得切线的切点。

代码例如以下:

#include
#include
#include
#include
#include
using namespace std;typedef long long LL;const double eps = 1e-10;const int maxn = 1e6+10;const double pi = acos(-1.0);const double inf = 1e17;int dcmp(double x){ if(fabs(x)
0) return 1; return -1;}struct point{ double x,y; int id; point(){} point(double _x,double _y,int i):x(_x),y(_y),id(i){} bool operator <(const struct point &tmp)const{ if(dcmp(x-tmp.x)==0) return dcmp(y-tmp.y)<0; return dcmp(x-tmp.x)<0; } bool operator == (const struct point &tmp)const{ return dcmp(x-tmp.x)==0&&dcmp(y-tmp.y)==0; }}p[maxn],st[maxn];double Cross(point a,point b,point c){ return (c.x-a.x)*(b.y-a.y) - (b.x-a.x)*(c.y-a.y);}int ConvexHull(point *p,int n,point *st){ sort(p,p+n); n=unique(p,p+n)-p; int m=0; for(int i=0; i
1&&Cross(st[m-2],p[i],st[m-1])<=0) m--; st[m++]=p[i]; } int k=m; for(int i=n-2; i>=0; i--){ while(m>k&&Cross(st[m-2],p[i],st[m-1])<=0)m--; st[m++]=p[i]; } if(n>1) m--; return m;}double dis(point a,point b){ return sqrt((a.x-b.x)*(a.x-b.x)+(a.y-b.y)*(a.y-b.y));}int R[600];int main(){ int n,m; while(~scanf("%d%d",&n,&m)){ int cnt = 0; for(int i=0;i

转载地址:http://slgka.baihongyu.com/

你可能感兴趣的文章
python实现牛顿法求解求解最小值(包括拟牛顿法)【最优化课程笔记】
查看>>
js中var、let、const的区别
查看>>
腾讯云加入LoRa联盟成为发起成员,加速推动物联网到智联网的进化
查看>>
从Python2到Python3:超百万行代码迁移实践
查看>>
Windows Server已可安装Docker,Azure开始支持Mesosphere
查看>>
简洁优雅地实现夜间模式
查看>>
react学习总结
查看>>
微软正式发布PowerShell Core 6.0
查看>>
Amazon发布新的会话管理器
查看>>
InfoQ趋势报告:DevOps 和云计算
查看>>
舍弃Python,为什么知乎选用Go重构推荐系统?
查看>>
在soapui上踩过的坑
查看>>
MySQL的字符集和字符编码笔记
查看>>
ntpd同步时间
查看>>
must implement java.io.Serializable hessian
查看>>
Microsoft Licenses Flash Lite for Windows Mobile Users
查看>>
HDOJ 2020 绝对值排序
查看>>
HDOJ/HDU 2560 Buildings(嗯~水题)
查看>>
Maven编译时跳过Test
查看>>
Spring Boot 整合Spring Security 和Swagger2 遇到的问题小结
查看>>