hdu6158 The Designer
Posted weeping
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了hdu6158 The Designer相关的知识,希望对你有一定的参考价值。
地址:http://acm.split.hdu.edu.cn/showproblem.php?pid=6158
题目:
The Designer
Time Limit: 8000/4000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 1381 Accepted Submission(s): 289
At first, haha\'s teacher gives him two big circles, which are tangent with each other. And, then, he wants to add more small circles in the area where is outside of the small circle, but on the other hand, inside the bigger one (you may understand this easily if you look carefully at the Figure1.
Each small circles are added by the following principles.
* you should add the small circles in the order like Figure1.
* every time you add a small circle, you should make sure that it is tangented with the other circles (2 or 3 circles) like Figure1.
The teacher wants to know the total amount of pigment he would use when he creates his master piece.haha doesn\'t know how to answer the question, so he comes to you.
Task
The teacher would give you the number of small circles he want to add in the figure. You are supposed to write a program to calculate the total area of all the small circles.
Contains a number in a single line, which shows the total area of the small circles. You should out put your answer with exactly 5 digits after the decimal point (NO SPJ).
思路:
圆的反演。
把俩个大圆的切点当做反演中心,可以得到下图:
这样每个圆都变成同大小的圆了,那怎么计算半径呢?
这样一次算下去,直到后面的圆不影响答案时结束。
1 #include <bits/stdc++.h> 2 3 using namespace std; 4 5 #define MP make_pair 6 #define PB push_back 7 typedef long long LL; 8 typedef pair<int,int> PII; 9 const double eps=1e-8; 10 const double PI=acos(-1.0); 11 const int K=1e6+7; 12 const int mod=1e9+7; 13 14 int main(void) 15 { 16 int t,n;cin>>t; 17 while(t--) 18 { 19 double lx,rx,x,y,d,r,nr,s,ans=0; 20 scanf("%lf%lf%d",&lx,&rx,&n); 21 lx=0.5/lx,rx=0.5/rx; 22 if(lx>rx) swap(lx,rx); 23 x=(lx+rx)/2.0; 24 r=(rx-lx)/2.0; 25 for(int i=1;i<=n;i++) 26 { 27 y=(i/2)*r*2; 28 d=sqrt(x*x+y*y); 29 nr=0.5*(1.0/(d-r)-1.0/(d+r)); 30 s=nr*nr*PI; 31 if(s<1e-12) break; 32 ans+=s; 33 } 34 printf("%.5f\\n",ans); 35 } 36 37 return 0; 38 }
以上是关于hdu6158 The Designer的主要内容,如果未能解决你的问题,请参考以下文章
HDU4057 Rescue the Rabbit(AC自动机+状压DP)
Rehosting the Workflow Designer
How to: Create a Business Model in the XPO Data Model Designer
环境初始化 Build and Install the Apache Thrift IDL Compiler Install the Platform Development Tools(代码片段
maven web项目的web.xml报错The markup in the document following the root element must be well-formed.(代码片段