博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
hdu 4454 Stealing a Cake(三分,4级)
阅读量:4960 次
发布时间:2019-06-12

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

Stealing a Cake

Time Limit: 5000/2000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 1013    Accepted Submission(s): 288


Problem Description
There is a big round cake on the ground. A small ant plans to steal a small piece of cake. He starts from a certain point, reaches the cake, and then carry the piece back home. He does not want to be detected, so he is going to design a shortest path to achieve his goal. 
The big cake can be considered as a circle on a 2D plane. The ant’s home can be considered as a rectangle. The ant can walk through the cake. Please find out the shortest path for the poor ant.
 

Input
The input consists of several test cases.
The first line of each test case contains x,y, representing the coordinate of the starting point. The second line contains x, y, r. The center of the cake is point (x,y) and the radius of the cake is r. The third line contains x1,y1,x2,y2, representing the coordinates of two opposite vertices of the rectangle --- the ant's home.
All numbers in the input are real numbers range from -10000 to 10000. It is guaranteed that the cake and the ant's home don't overlap or contact, and the ant's starting point also is not inside the cake or his home, and doesn't contact with the cake or his home.
If the ant touches any part of home, then he is at home.
Input ends with a line of 0 0. There may be a blank line between two test cases.
 

Output
For each test case, print the shortest distance to achieve his goal. Please round the result to 2 digits after decimal point.
 

Sample Input
 
1 1 -1 1 1 0 -1 1 0 0 2 -1 1 1 0 -1 1 0 0 0
 

Sample Output
 
1.75 2.00
 

Source
 
思路:三分蚂蚁圆上所在点。其实就是三分圆心角。

#include
#include
#include
#include
#define FOR(i,a,b) for(int i=a;i<=b;++i)#define clr(f,z) memset(f,z,sizeof(f))using namespace std;const double eps=1e-8;const double pi=acos(-1.0);class Point{public: double x,y,r; double dis(Point z) { return sqrt((z.x-x)*(z.x-x)+(z.y-y)*(z.y-y)); }}s,cir,hei,col;double fabs(double x){ if(x<0)return -x; return x;}class Line{public: Point l,r; double xmult(Point p1,Point p2,Point p0) { return (p1.x-p0.x)*(p2.y-p0.y)-(p2.x-p0.x)*(p1.y-p0.y); } double dis_P_seg(Point p)///点到线段最短距离 { Point t=p; t.x+=l.y-r.y; t.y+=r.x-l.x; if(xmult(l,t,p)*xmult(r,t,p)>eps) return p.dis(l)
eps) { ll=(l+l+r)/3; rr=(l+r+r)/3; if(judge(ll)>judge(rr)) { l=ll; } else r=rr; } double ans=judge( (l+r)/2); printf("%.2lf\n",ans); //cout<
<

转载于:https://www.cnblogs.com/nealgavin/p/3797551.html

你可能感兴趣的文章
Linux 目录递归赋权,解决 Linux权限不够
查看>>
面向对象(OO,封装、继承、多态)
查看>>
cmd命令行给main传参数
查看>>
整理了一份招PHP高级工程师的面试题
查看>>
iOS--inputView和inputAccessoryView
查看>>
grep
查看>>
python django 上传文件到七牛
查看>>
sql_calc_found_rows原理
查看>>
链表的反转
查看>>
我要赚钱!
查看>>
Java内存区域
查看>>
叔本华论说文集摘录(一)
查看>>
Ext JS 4 主从表
查看>>
C++ 基类和派生类
查看>>
PHP排序算法
查看>>
HTTP 状态消息
查看>>
[Xcode 实际操作]五、使用表格-(1)使用UITableView制作简单表格
查看>>
Mysql net start mysql启动,提示发生系统错误 5 拒绝访问,原因所在以及解决办法
查看>>
设计模式--门面模式C++实现
查看>>
Android SurfaceFlinger服务(五) ----- VSync信号的产生
查看>>