hdu 6158 The Designer
程序员文章站
2022-07-01 11:26:31
...
题解
比赛之后有大佬说这题可以用圆的反演来做,学习了一下。
以两个大圆的切点为反演中心,任取一个反演半径,两个大圆会变成两条平行线。再考虑小圆的反演,由于相切的性质不变,小圆的反演圆就是一列夹在平行线中间的小圆。
示意图:
当然这样还是
代码
#include <bits/stdc++.h>
using namespace std;
typedef long double ld;
const ld IR2=100;
const ld PI=3.141592653589793238462643383279502884197169399375105820974944592307816L;
struct Point {
ld x,y;
Point(ld _x=0,ld _y=0):x(_x),y(_y) {}
Point operator +(const Point &R) {
return Point(R.x+x,R.y+y);
}
Point operator -(const Point &R) {
return Point(R.x-x,R.y-y);
}
ld operator *(const Point &R) {
return R.x*x+R.y*y;
}
Point operator *(const ld &R) {
return Point(x*R,y*R);
}
void print() {
double o1=x,o2=y;
cout<<o1<<" "<<o2<<"\n";
}
};
#define sqr(x) ((x)*(x))
ld inv_circle(Point O,Point C,ld r)
{
return IR2*r/(sqr(O-C)-sqr(r));
}
int main()
{
int T;
scanf("%d",&T);
Point O(0,0);
while (T--) {
double t1,t2;
scanf("%lf%lf",&t1,&t2);
if (t1>t2) swap(t1,t2);
ld r=t1,R=t2;
int n;
scanf("%d",&n);
Point P(0.5*IR2/R,0);
Point Q(0.5*IR2/r,0);
ld L=Q.x-P.x;
Point o((P+Q)*0.5);
ld ans=0;
if (n%2==0) {
Point C(o.x,o.y+(n/2)*L);
ld rr=inv_circle(O,C,L*0.5);
ans+=PI*rr*rr;
}
for (int i=1;i+i-1<=n;i++) {
Point C(o.x,o.y+(i-1)*L);
ld rr=inv_circle(O,C,L*0.5);
ld area=PI*rr*rr;
if (area<1e-12) break;
ans+=area;
if (i>1) ans+=area;
}
double out=ans;
printf("%.5f\n",out);
}
return 0;
}
尾巴
大佬不愿意透露id,鸣谢csust?
上一篇: VS2017 + Opencv + Win10配置(C++)
下一篇: 她的妹妹
推荐阅读
-
PyCharm+Qt Designer+PyUIC安装配置教程详解
-
Altium Designer 18(AD18)中文安装+破解详细教程(附破解下载)
-
Substance Designer 2018注册破解详细安装教程(附破解补丁下载)
-
Marvelous Designer怎么破解?三维服装设计软件Marvelous Designer安装+破解教程
-
Xara Designer Pro X15 完美激活破解安装教程(附破解版下载)
-
Altium Designer 17(AD17)汉化破解安装详细图文教程(附Licenses和谐文件)
-
Altium Designer17(AD17)免局域网冲突破解文件安装详细教程
-
hdu--1232 继续通畅工程
-
HDU 2256Problem of Precision(矩阵快速幂)
-
《ServerSuperIO Designer IDE使用教程》-2.与硬件网关数据交互,并进行数据级联转发,直到云端。发布:v4.2.1版本