zoukankan      html  css  js  c++  java
  • 三分板子

    B - Light Bulb
    Time Limit:1000MS     Memory Limit:32768KB     64bit IO Format:%lld
     & %llu
    Submit Status Practice ZOJ
     3203
     

    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.
     
     

    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. Dis 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
     
     作用: 处理单调或者峰值函数的极值
     
    每次分一个  rmid
    再相当于4分 算lmid
     
     code:
    //
    #include<iostream>
    #include<cstdio>
    using namespace std;
    int T;
    double H,h;
    double D;
    double F(double x)
    {
        return ((h-x)/(H-x))*D+x;
    }
    int main()
    {
        cin>>T;
        while(T--)
        {
            cin>>H>>h>>D;
            double  r=h;
            double l=0;
            double rmid=(l+r)/2;
            double lmid=(rmid+l)/2;
            while(rmid-lmid>=1e-9)
            {
                if(F(lmid)>=F(rmid))
                {
                    r=rmid;
                }
                else
                l=lmid;
             rmid=(l+r)/2;
             lmid=(rmid+l)/2;
            }
            printf("%.3lf
    ",F((lmid+rmid)/2));
        }
    }
     
    Sample Output
     
    1.000
    0.750
    4.000
    刀剑映出了战士的心。而我的心,漆黑且残破
  • 相关阅读:
    Yslow的A评级指南
    Sqlserver 数据库自动备份
    他们如果什么也没有做,那将是我来世上的最大遗憾。
    规划人生
    安装程序无法复制一个或多个文件。特定错误码是0x4b8。
    Sqlserver数据库的恢复
    Android新手之旅(3) 信息的输出
    PDF开发控件
    通过快盘搭建自己的svn服务器
    Android新手之旅(2) 新手问题
  • 原文地址:https://www.cnblogs.com/OIEREDSION/p/11275631.html
Copyright © 2011-2022 走看看