Light Bulb(三分)

ZOJ Problem Set - 3203

Light Bulb


Time Limit: 1 Second      Memory Limit: 32768 KB



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

题解:找出函数,两种方法,一种求导直接求,另一种是三分;

法一:

 1 #include<stdio.h>
 2 #include<math.h>
 3 int main(){
 4     int T;
 5     double H,h,D;
 6     //公式:D-x+H-(H-h)*D/x;
 7      //求导:-1+(H-h)*D/(x*x)
 8      //导数等于0,求得极值x=sqrt((H-h)*D)
 9      //影子在地面最长时x=(H-h)*D/H;
10      scanf("%d",&T);
11      while(T--){
12          scanf("%lf%lf%lf",&H,&h,&D);
13          double jz=sqrt((H-h)*D);
14          double ans;
15          if(jz<=(H-h)*D/H)ans=D-(H-h)*D/H;
16          else if(jz>=D)ans=h;
17          else ans=D-jz+H-(H-h)*D/jz;
18          printf("%.3lf\n",ans);
19      }
20     return 0;
21 }

三分:

 1 #include<stdio.h>
 2 #include<math.h>
 3 double H,h,D;
 4 double getl(double x){
 5     return D-x+H-(H-h)*D/x;
 6 }
 7 void sanfen(){
 8     double l=(H-h)*D/H,m,mm,r=D;//l从地面最长开始
 9     while(r-l>1e-10){
10         m=(l+r)/2;
11         mm=(m+r)/2;
12         if(getl(m)>=getl(mm))r=mm;
13         else l=m;
14     }
15     printf("%.3lf\n",getl(l));
16 }
17 int main(){
18     int T;
19     scanf("%d",&T);
20     while(T--){
21         scanf("%lf%lf%lf",&H,&h,&D);
22         sanfen();
23     }
24     return 0;
25 }
时间: 2024-08-03 15:39:31

Light Bulb(三分)的相关文章

ZOJ 3203 Light Bulb 三分

最简单的三分题,期末考完先做一道练练手 就是这么一个图,告诉你H h D,问你L最长是多少,假设人到灯的距离是X,那么容易得到 L = H-D/x*(H-h)+D-x,求个导很容易发现是一个关于x 的凸性函数,就可以三分啦 要注意的是三分的时候的精度eps,这题要求得是1e-9才能A,1e-8都WA,真是囧 #include <cstdio> #include <sstream> #include <fstream> #include <cstring> #

ZOJ 3203 Light Bulb (三分+计算几何)

题目地址:ZOJ 3203 第一发三分.三分的原理还是挺简单的. 代码如下: #include <iostream> #include <string.h> #include <math.h> #include <queue> #include <algorithm> #include <stdlib.h> #include <map> #include <set> #include <stdio.h&g

zoj 3203 Light Bulb,三分基础题

Light Bulb Time Limit: 1 Second      Memory Limit: 32768 KB 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 incommodio

ZOJ 3203: Light Bulb

ZOJ 3203: Light Bulb 1 ///@author Sycamore, ZJNU 2 ///@date 2017-02-09 3 #include<algorithm> 4 #include<iostream> 5 #include<iomanip> 6 #define eps 1e-10 7 using namespace std; 8 double H, h, L, D; 9 double getL(double a) 10 { 11 return

zoj 3203 Light Bulb(公式推导|三分法)(简单)

Light Bulb Time Limit: 1 Second      Memory Limit: 32768 KB 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 incommodio

ZOJ Problem Set - 3203 Light Bulb 【三分法】

题目:ZOJ Problem Set - 3203 Light Bulb 题意: 如图,有个人在地上走,然后他的影子可以投影到墙上或者地上,问影子最长是多少? 分析: 我们知道,三分法是解决一个凹或凸函数的极大极小值,发现这个影子从刚好投影到右下角开始便是一个凸函数,他的影子长度是先递增后递减的,所以可以用三分法. 三分法的原理: AC代码: #include <cstdio> #include <cstring> #include <vector> #include

Light Bulb

Time Limit: 1 Second      Memory Limit: 32768 KB 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, t

zoj 3203 Light Bulb,三分之二的基本问题

Light Bulb Time Limit: 1 Second      Memory Limit: 32768 KB 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 incommodio

[清华集训2015]灯泡(浙江大学ZOJ 3203 Light Bulb)

Time Limit: 1 Second      Memory Limit: 32768 KB 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, t