首页 > 其他 > 详细

三分 HDU 5144

时间:2017-01-30 19:31:49      阅读:227      评论:0      收藏:0      [点我收藏+]
#include<stdio.h>
#include<algorithm>
#include<string.h>
#include<math.h>
using namespace std;

#define g 9.8
const double pi = 4*atan(1.0);
double v,h;

double f(double a)
{
        return v*cos(a)*v*sin(a)/g+v*cos(a)*sqrt(v*v*sin(a)*sin(a)/g/g+2*h/g);
}
int main()
{
    int t;
    scanf("%d",&t);
    while(t--)
    {

        scanf("%lf%lf",&h,&v);
        double l,r;
        l=0;
        r=pi/2;
        while(r-l>=1e-10)
        {
            double lm,rm;
            lm=l+(r-l)/3;
            rm=l+(r-l)*2/3;
            if(f(lm)>f(rm))
                r=rm;
            else
                l=lm;
        }
        printf("%.2lf\n",f(l));
    }

    return 0;
}

 

三分 HDU 5144

原文:http://www.cnblogs.com/cherryMJY/p/6358277.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!