poj 2507 Crossed ladders

Crossed ladders
Time Limit: 1000MS   Memory Limit: 65536K
Total Submissions: 3984   Accepted: 1555

Description

A narrow street is lined with tall buildings. An x foot long ladder is rested at the base of the building on the right side of the street and leans on the building on the left side. A y foot long ladder is rested at the base of the building on the left side of the street and leans on the building on the right side. The point where the two ladders cross is exactly c feet from the ground. How wide is the street?

Input

Each line of input contains three positive floating point numbers giving the values of x, y, and c.

Output

For each line of input, output one line with a floating point number giving the width of the street in feet, with three decimal digits in the fraction.

Sample Input

30 40 10
12.619429 8.163332 3
10 10 3
10 10 1

Sample Output

26.033
7.000
8.000
9.798
#include<iostream>
#include<cmath>
using namespace std;

const double ERR=1e-10;
double x,y,c;
double s,l,r;

int main()
{
while(scanf("%lf%lf%lf",&x,&y,&c)!=EOF)
{
l=0;
r=x>y?y:x;
while(l+ERR<r)
{
s=(l+r)/2;
if( c/sqrt(x*x-s*s)+c/sqrt(y*y-s*s)<=1 )
l=s;
else
r=s;
}
printf("%.3lf\n",l);
}
return 0;
}

posted @ 2011-11-22 12:25  w0w0  阅读(226)  评论(0)    收藏  举报