#Lutece0380. Jump

Jump

Migrated from Lutece 380 Jump

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

title

Recently, Standy hooked on a game. At first, he stands on the top of the board and he can jump to any grid in the 1st1_{st} row with same probability. Then for every step, he can jump left-down, right-down or down with the given probability. (And he may even jump out of the board.) Some grids are traps while others are flats. When Standy jumps to the traps or out of the board, he will go back to the start again. When he reached the last row, he can easily jump to the end with a step. Note that he can’t jump out of board from the start to the 1st1_{st} row or from the last row to the end.

Now Standy would like to know the expectation of the number of steps to reach the end.

Input

The first line of the input is an integer TT (T100T\leq 100), which stands for the number of test cases you need to solve.

Every test case begins with two integers RR and CC (1R10,1C10001\leq R\leq 10, 1\leq C\leq 1000) indicating the number of rows and columns.

The second line contains two integers PLP_L and PRP_R (0PL,PR10,0PL+PR100\leq P_L, P_R\leq 10, 0\leq P_L+P_R\leq 10). And the probability of jump left-down and right-down are PL10\frac{P_L}{10} and PR10\frac{P_R}{10} (so the probability of jump down is 10PLPR10\frac{10-P_L-P_R}{10}).

Then RR lines follow. Every line contains CC characters. The jthj_{th} character in the ithi_{th} row represents the state of the corresponding grid, O is flat and X is trap.

Output

For every test case, you should output Case #k: first, where kk indicates the case number and starts at 11. Then the expected jumps rounded to 33 digits after the decimal point. If he can’t reach the end, just output INF (without quotes).

Samples

3
1 3
3 3
XOX
1 1
10 0
X
2 4
3 5
XOXO
OXOX
Case #1: 4.000
Case #2: INF
Case #3: 6.455

Resources

The 9th UESTC Programming Contest Final