A. Light Bulb
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.
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
解题:好吧,比较喜欢数学解法,速度快嘛。。。参阅某神的代码。。。
算法:利用函数的凸性
思路一:
学妹的思路:三分 L
1 #include<stdio.h> 2 #include<string.h> 3 #include<math.h> 4 5 int main() 6 { 7 int T; 8 double H,h,D; 9 scanf("%d", &T); 10 while(T--) 11 { 12 scanf("%lf%lf%lf", &H,&h,&D); 13 double x1 = (H-h)*D/H; 14 double x2 = D; 15 double x0 = sqrt(D*(H-h)); 16 17 double x; 18 19 if(x1 <= x0 && x0 <= x2) x = x0; 20 else if(x0 <= x1) x = x1; 21 else if(x0 >= x2) x = x2; 22 23 double ans = D+H- (x + (H-h)*D/x); 24 printf("%.3lf ", ans); 25 } 26 return 0; 27 }