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
    刀剑映出了战士的心。而我的心,漆黑且残破
  • 相关阅读:
    工作流
    工作流管理系统
    Domino(群组工作软件)
    Integer与int的区别(转)
    Java NIO和IO的区别(转)
    String、StringBuffer与StringBuilder之间区别(转)
    JAVA 是否会发生内存泄露(转)
    Java关键字final、static使用总结(转)
    数据结构中常见的树(BST二叉搜索树、AVL平衡二叉树、RBT红黑树、B-树、B+树、B*树)(转)
    Java多线程:用三个线程控制循环输出10次ABC
  • 原文地址:https://www.cnblogs.com/OIEREDSION/p/11275631.html
Copyright © 2011-2022 走看看