HDOJ 5144 NPY and shot(三分)

原函数为单峰函数,所以不能用二分。

#include <algorithm>
#include <iostream>
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include <math.h>
using namespace std;

const double pi = acos(-1.0);
const double g = 9.8;

double h, v, l, r, ml, mr, k;

double f(double ang)
{
    double a = -g / 2, b = v * sin(ang), c = h;
    double d = sqrt(b * b - 4 * a * c);
    double t = -(b + d) / (2 * a);
    return  cos(ang) * v * t;
}

int main()
{
//    freopen("C.in", "r", stdin);

    int T;
    scanf("%d", &T);
    while(T--)
    {
        scanf("%lf%lf", &h, &v);
        l = 0, r = pi/2;
        for(int i = 0; i < 60; i++)
        {
            k = (r - l) / 3;
            ml = l + k, mr = r - k;
            if (f(ml) < f(mr)) l = ml;
            else r = mr;
        }
        printf("%.2lf\n", f(l));
    }
    return 0;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值