#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
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 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 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 (), which stands for the number of test cases you need to solve.
Every test case begins with two integers and () indicating the number of rows and columns.
The second line contains two integers and (). And the probability of jump left-down and right-down are and (so the probability of jump down is ).
Then lines follow. Every line contains characters. The character in the 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 indicates the case number and starts at . Then the expected jumps rounded to 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