SPOJ Problem 22:Triangle From Centroid
已知三角形重心到三边的距离和其中一边,求面积和重心到垂心的距离。
计算几何。。纯数学题
#include<cstdio> #include<cmath> int t; double x,y,z,a,s,d,r1,r2; int main(){ scanf("%d",&t); while(t--){ scanf("%lf%lf%lf%lf",&a,&x,&y,&z); s=3*a*x/2; r1=pow(x*x*(y*y-z*z)/(y*y*z*z)*a/3,2.0); r2=a*a*x*x*x*(1/(x*x*x*x)-1/(y*y*y*y)-1/(z*z*z*z)+2/(y*y*z*z))/12-x; d=sqrt(r1+pow(r2,2.0)); printf("%.3lf %.3lf\n",s,d); } }
posted on 2015-03-16 15:27 problemcutter 阅读(144) 评论(0) 编辑 收藏 举报