• Little Jumper---(三分)


    Description

          Little frog Georgie likes to jump. Recently he have discovered the new playground that seems the perfect place to jump.

          Recently the new jumping exercise has become very popular. Two vertical walls are placed on the playground, each of which has a hole.

          The lower sides of the holes in the walls are on heights b1 and b2 respectively, and upper sides on heights t1 and t2. Walls are parallel and placed on distance l from each other.

          The jumper starts at the distance ds from the first wall. It jumps through the first hole and lands between the walls. After that from that point he jumps through the second hole. The goal is to land exactly at the distance df from the second wall.

          Let us describe the jump. The jumper starts from the specified point and starts moving in some chosen direction with the speed not exceeding some maximal speed v, determined by the strength of the jumper. The gravity of g forces him down, thus he moves along the parabolic trajectory.

          The jumper can choose different starting speeds and different directions for his first and second jump.

          Of course, The jumper must not attempt to pass through the wall, although it is allowed to touch it passing through the hole, this does not change the trajectory of the jump. The jumper is not allowed to pass through both holes in a single jump.

          Find out, what must be the maximal starting speed of the jumper so that he could fulfil the excersise.

    Input

          Input file contains one or more lines, each of which contains eight real numbers, separated by spaces and/or line feeds. They designate b1, t1, b2, t2, l, ds, df and g. All numbers are in range from 10-2 to 103, t1 ≥ b1 + 10-2, t2 ≥ b2 + 10-2.

          Input file contains at most 1000 test cases.

    Output

          For each line of the input file output the smallest possible maximal speed the jumper must have to fulfil the exercise. If it is impossible to fulfil it, output -1. Your answer must be accurate up to 10-4.

    Sample Input

    0.3 1.0 0.5 0.9 1.7 1.2 2.3 9.8
    0.6 0.8 0.6 0.8 2.4 0.3 1.5 0.7

    Sample Output

    5.2883
    1.3127

    #include <set>
    #include <map>
    #include <stack>
    #include <queue>
    #include <math.h>
    #include <vector>
    #include <string>
    #include <utility>
    #include <stdio.h>
    #include <stdlib.h>
    #include <string.h>
    #include <iostream>
    #include <algorithm>
    #include <functional>
    
    using namespace std;
    const double pi=acos(-1);
    const int maxn=100005;
    const int INF=0x3f3f3f;
    const double eps=1e-12;
    int dcmp(double x){
        if(fabs(x)<eps)return 0;
        if(x>0)return 1;
        return -1;
    }//精度为eps的比较
    double b1,t1,b2,t2,l,ds,df,g;
    double calu(double dis,double x,double b,double t){
        double v=0;
        double mid=dis/2;
        double a=-1/dis;
        double y=a*x*x+x;
        if(y>=b&&y<=t){
            double h=a*mid*mid+mid;
            double t,vx,vy;
            t=sqrt(2*h/g);
            vx=dis/t/2;
            vy=g*t;
            v=vx*vx+vy*vy;
        }
        else{
            if(y<b)
            a=b/(x*x-dis*x);
            else
                a=t/(x*x-dis*x);
            double h=a*mid*(mid-dis);
            double t,vx,vy;
            t=sqrt(2*h/g);
            vx=dis/t/2;
            vy=g*t;
            v=vx*vx+vy*vy;
    
        }
        return v;
    }
    double solve(double t){
        double ans1=ds+t;
        double ans2=df+l-t;
        double v1,v2;
        v1=calu(ans1,ds,b1,t1);
        v2=calu(ans2,l-t,b2,t2);
        return max(v1,v2);
    }
    int main(){
        while(scanf("%lf%lf%lf%lf%lf%lf%lf%lf",&b1,&t1,&b2,&t2,&l,&ds,&df,&g)!=EOF){
            double low,high,mid,midd;
            low=0;
            high=l;
            while(high-low>eps){
                mid=(high+low*2)/3;
                midd=(low+high*2)/3;
                if(solve(mid)<solve(midd))high=midd;
                else low=mid;
            }
            printf("%.4f
    ",sqrt(solve(mid)));
        }
        return 0;
    }
  • 相关阅读:
    Linux下GCC生成和使用静态库和动态库详解(二)
    make linux内核
    gdb
    GCC动态库和静态库混合使用
    gcc g++ Linux下动态库_静态库
    makefile
    linux线程函数大全
    C++ 中的插入迭代器以及其迭代器适配器
    gcc
    android ScrollView中嵌套GridView,ListView只显示一行的解决办法
  • 原文地址:https://www.cnblogs.com/chen9510/p/5539309.html
Copyright © 2020-2023  润新知