CodeForces 312B Archer

思路:列一下式子发现是一个等比数列求和,求一下就可以了


#include
using namespace std;

int main()
{
     int a,b,c,d;
	 scanf("%d%d%d%d",&a,&b,&c,&d);
	 double p1 = (double)a/b;
	 double p2 = (double)c/d;
	 double ans = 0;
	 double p = 1;
	 for (int i = 0;i<10000;i++)
	 {
		 ans+=p*(1-p1)*p2;
		 p = p*(1-p1)*(1-p2);
	 }
	 printf("%.12lf\n",1-ans);
}


Description

SmallR is an archer. SmallR is taking a match of archer with Zanoes. They try to shoot in the target in turns, and SmallR shoots first. The probability of shooting the target each time is  for SmallR while  for Zanoes. The one who shoots in the target first should be the winner.

Output the probability that SmallR will win the match.

Input

A single line contains four integers .

Output

Print a single real number, the probability that SmallR will win the match.

The answer will be considered correct if the absolute or relative error doesn't exceed 10 - 6.

Sample Input

Input
1 2 1 2
Output
0.666666666667


你可能感兴趣的:(数论及数学)