Broken robot

题意翻译

## 题意翻译 $n$ 行 $m$ 列的矩阵,现在在 $(x,y)$,每次等概率向左,右,下走或原地不动,但不能走出去,问走到最后一行期望的步数。 注意,$(1,1)$ 是木板的左上角,$(n,m)$ 是木板的右下角。 ### 输入输出格式 #### 输入格式 第一行为两个整数 $n,m$。 第二行为两个整数 $x,y$。 #### 输出格式 一行,输出所需移动步数的数学期望值,至少保留 $4$ 位小数的值。 ### 说明/提示 $1\le n,m\le 10^3$,$1\le x\le n$,$1\le y\le m$。

题目描述

You received as a gift a very clever robot walking on a rectangular board. Unfortunately, you understood that it is broken and behaves rather strangely (randomly). The board consists of $ N $ rows and $ M $ columns of cells. The robot is initially at some cell on the $ i $ -th row and the $ j $ -th column. Then at every step the robot could go to some another cell. The aim is to go to the bottommost ( $ N $ -th) row. The robot can stay at it's current cell, move to the left, move to the right, or move to the cell below the current. If the robot is in the leftmost column it cannot move to the left, and if it is in the rightmost column it cannot move to the right. At every step all possible moves are equally probable. Return the expected number of step to reach the bottommost row.

输入输出格式

输入格式


On the first line you will be given two space separated integers $ N $ and $ M $ ( $ 1<=N,M<=1000 $ ). On the second line you will be given another two space separated integers $ i $ and $ j $ ( $ 1<=i<=N,1<=j<=M $ ) — the number of the initial row and the number of the initial column. Note that, $ (1,1) $ is the upper left corner of the board and $ (N,M) $ is the bottom right corner.

输出格式


Output the expected number of steps on a line of itself with at least $ 4 $ digits after the decimal point.

输入输出样例

输入样例 #1

10 10
10 4

输出样例 #1

0.0000000000

输入样例 #2

10 14
5 14

输出样例 #2

18.0038068653