#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 1,2,,N{1, 2, \cdots, N}, which means each pair of different integers have the same probility to be chosen. We call the smaller one xx, and the larger one yy. xx and yy keep unchanged all the time. On each of the following days, Alice will choose an integer dxd_x from 0,1,,x{0, 1, \cdots, x} and Bob will choose an integer dyd_y from 0,1,,y{0, 1, \cdots, y} simultaneously. After then, Alice will get a score SxS_x of that day, which is either x+dxx+d_x or xdxx-d_x with equal probability. And similarly, Bob will get a score SyS_y, which is either y+dyy+d_y or ydyy-d_y with equal probability. If SxS_x is no less than SyS_y, 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 dxd_x or dyd_y on that day. On the second day, Alice's strategy is to randomly choose dxd_x from 0,1,,x{0, 1, \cdots, x}. And Bob's strategy is to randomly choose dyd_y from 0,1,,y{0, 1, \cdots, y}. We also know both players' strategies on the KthK_{th} (K>2K > 2) day.

If KK is odd, Bob's strategy keeps the same as the previous day, which means different dyd_ys 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 dxd_x from 0,1,,x{0, 1, \cdots, x} to maximize her winning probability. If there are several dxd_xes leading to her maximum winning probability, her strategy is to randomly choose one.

If KK is even, Alice will do what Bob do and Bob will do what Alice do when KK is odd, which means Alice's strategy keeps the same as the previous day and Bob's strategy is to choose a dyd_y from 0,1,,y{0, 1, \cdots, y} to maximize his winning probability. Similarly, if there are several dyd_ys leading to Bob's maximum winning probability, his strategy is to randomly choose one.

You are given an int NN and an int KK. Answer Alice's winning probability on the KthK_{th} day.

Input

The input contains 22 integers N,KN, K (2N,K1062\leq N, K\leq 10^6), as mentioned above.

Output

Output Alice's winning probability on the KthK_{th} day, rounded to 44 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 dyd_ys to be chosen by Bob, but she may not know which dyd_y Bob will choose on that day, and vice versa.

When you calculate Alice's winning probability on the KthK_{th} day, xx and yy haven't been chosen yet.

Resources

the 12th UESTC Programming Contest Preliminary