#Lutece0799. Game with Randomness
Game with Randomness
Migrated from Lutece 799 Game with Randomness
All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.
Description
Alice and Bob like playing games. On the first day, they randomly get two different integers from , which means each pair of different integers have the same probility to be chosen. We call the smaller one , and the larger one . and keep unchanged all the time. On each of the following days, Alice will choose an integer from and Bob will choose an integer from simultaneously. After then, Alice will get a score of that day, which is either or with equal probability. And similarly, Bob will get a score , which is either or with equal probability. If is no less than , Alice will be the winner of that day. Otherwise Bob is.
The strategy of a player on a specific day is the way of choosing or on that day. On the second day, Alice's strategy is to randomly choose from . And Bob's strategy is to randomly choose from . We also know both players' strategies on the () day.
If is odd, Bob's strategy keeps the same as the previous day, which means different s have the same probabilities with the previous day to be chosen by Bob. However, Alice's strategy changes. She knows Bob's strategy on this day and she will choose a from to maximize her winning probability. If there are several es leading to her maximum winning probability, her strategy is to randomly choose one.
If is even, Alice will do what Bob do and Bob will do what Alice do when is odd, which means Alice's strategy keeps the same as the previous day and Bob's strategy is to choose a from to maximize his winning probability. Similarly, if there are several s leading to Bob's maximum winning probability, his strategy is to randomly choose one.
You are given an int and an int . Answer Alice's winning probability on the day.
Input
The input contains integers (), as mentioned above.
Output
Output Alice's winning probability on the day, rounded to digits after decimal point.
Samples
2 2
0.3750
2 3
0.4167
99999 99
0.2500
Note
Alice knows Bob's strategy on a specific day means that Alice knows the probabilities of different s to be chosen by Bob, but she may not know which Bob will choose on that day, and vice versa.
When you calculate Alice's winning probability on the day, and haven't been chosen yet.
Resources
the 12th UESTC Programming Contest Preliminary