码迷,mamicode.com
首页 > 其他好文 > 详细

B - Archer

时间:2018-06-08 20:44:04      阅读:159      评论:0      收藏:0      [点我收藏+]

标签:time   oba   using   ali   try   ddl   思路   ++   line   

Problem 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.

Examples

Input
1 2 1 2
Output
0.666666666667
解题思路:等比数列求极限和。推导公式如下:
技术分享图片

AC代码:
1 #include <bits/stdc++.h>
2 using namespace std;
3 int main(){
4     double a,b,c,d;
5     cin>>a>>b>>c>>d;
6     cout<<setiosflags(ios::fixed)<<setprecision(12)<<((a/b)*(1/(1-(1-a/b)*(1-c/d))))<<endl;
7     //printf("%.12f\n",(a/b)*(1/(1-(1-a/b)*(1-c/d))));
8     return 0;
9 }

 

B - Archer

标签:time   oba   using   ali   try   ddl   思路   ++   line   

原文地址:https://www.cnblogs.com/acgoto/p/9157300.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!