IITKWPCN - Playing With Balls
There are W white balls and B black balls in a bag. A magician is performing tricks by drawing balls from the bag.
In each step, the magician randomly removes any two balls from the bag. If the drawn balls are of the same color, he will put one white ball in the bag, otherwise he will put a black ball in it. The two drawn balls from the bag from the ball are discarded.
He keeps on doing the above tricks until there is only one ball remaining in the bag.
Given W and B, you have to determine the probability that the color of last ball remaining in the bag is black. You should print the answer with accuracy of up to 6 decimal digits.
Input
T : number of test cases (1 ≤ T ≤ 104)
For every test case W and B are given (0 ≤ W ≤ 108 and 0 ≤ B ≤ 108 and W + B ≠ 0)
Output
For each test case, output the probability as stated in the problem statement.
Example
Input: 2 1 1 1 2 Output: 1.000000 0.000000
hide comments
prabhat7298:
2019-08-17 21:18:07
Here is a formal proof for the solution:
|
|
satish18:
2019-02-06 12:12:53
observe pattern+if+else=AC |
|
prabhav_123:
2018-12-15 20:44:44
no probability..lol ! one go, |
|
mittalprateek:
2018-10-07 06:51:13
just observe the pattern ....you will get ac :{
|
|
touchstone:
2017-06-17 20:44:27
it's all about spending few minutes to analyze the question :) AC IN 1 GO :D |
|
ace_cocytus:
2016-09-01 04:22:52
what a riddle |
|
pankaj sharma:
2016-06-29 22:11:00
I solved the problem using observation,but I was trying to figure out the general formula for this. Was anyone able to get a general formula of the probability? |
|
hash7:
2016-06-02 20:11:00
dont think as the problem setter wants you to think.. make some sample output and analyze it... you will get a 2 line logic :) nyc question |
|
geoffreymace7:
2015-10-13 08:21:15
Nice question! |
|
dwij28:
2015-09-08 18:46:33
Takes a bit of a time to understand, and then just 3 lines in python. :D |
Added by: | praveen123 |
Date: | 2013-08-06 |
Time limit: | 1s |
Source limit: | 50000B |
Memory limit: | 1536MB |
Cluster: | Cube (Intel G860) |
Languages: | All except: ASM64 |
Resource: | IITK ACA CSE online judge |