HDU 影子问题

时间:2014-03-09 00:55:50   收藏:0   阅读:580

Problem Description
Compared to wildleopard‘s wealthiness, his brother mildleopard is rather poor. His house is narrow and he has only one light bulb in his house. Every night, he is wandering in his incommodious house, thinking of how to earn more money. One day, he found that the length of his shadow was changing from time to time while walking between the light bulb and the wall of his house. A sudden thought ran through his mind and he wanted to know the maximum length of his shadow.

bubuko.com,布布扣

Input

The first line of the input contains an integer T (T <= 100), indicating the number of cases.

Each test case contains three real numbers H, h and D in one line. H is the height of the light bulb while h is the height of mildleopard. D is distance between the light bulb and the wall. All numbers are in range from 10-2 to 103, both inclusive, and H - h >= 10-2.

Output

For each test case, output the maximum length of mildleopard‘s shadow in one line, accurate up to three decimal places..

Sample Input

3
2 1 0.5
2 0.5 3
4 3 4

Sample Output

1.000
0.750
4.000




我感觉这就是一道数学题:

#include<stdio.h>

#include<math.h>
int main()
{
    int n;
    double H,D,h,s1,s2,x1,x2,i,s;
    scanf("%d",&n);
    while(n--)
    {
        scanf("%lf%lf%lf",&H,&h,&D);
        s1=D*h/H;
        x1=D*(H-h)/H;
        x2=sqrt(D*(H-h));
        s2=(-x2*x2+x2*(D+H)+D*(h-H))/x2;
        if(x2<=x1)
        s=s1;
        if(x2>=D)
        {
            if(s1>=h)
                s=s1;
            else
                s=h;
        }
        if(x2<D  &&  x2>x1)
        {
             if(s1>=s2)
             s=s1;
        else
            s=s2;
        }


        printf("%.3f\n",s);
    }
    return 0;
}

HDU 影子问题,布布扣,bubuko.com

原文:http://blog.csdn.net/u013712847/article/details/20805129

评论(0
© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!