【Light】[1043]Triangle Partitioning
相似三角形面积之比为相似比的平方
通过给的比率可求出三角形面积之比
进而可求相似比
从而求出AD边长
#include<stdio.h>
#include<math.h>
int main() {
int T,kase=0;
scanf("%d",&T);
while(T--) {
double a,b,c,d;
scanf("%lf %lf %lf %lf",&a,&b,&c,&d);
printf("Case %d: %lf\n",++kase,a*sqrt(d/(d+1)));
}
return 0;
}