1. 程式人生 > >【題解】codeforces24D Broken robot 期望DP+高斯消元

【題解】codeforces24D Broken robot 期望DP+高斯消元

題目連結

Description

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.

Input

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

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

Examples

Input

10 10 10 4

Output

0.0000000000

Input

10 14 5 14

Output

18.0038068653

學習了大佬題解,好神奇這個矩陣,感覺是把係數拿來成比例變化了一下。

#include<cstdio>
const int N=1e3+10;
int n,m,x,y;
double a[N],b[N],f[N][N];
int main()
{
	//freopen("in.txt","r",stdin);
    scanf("%d%d%d%d",&n,&m,&x,&y);
    if(m==1){printf("%.5f\n",2.0*(n-x));return 0;}
    for(int i=n-1;i>=x;i--)
    {
    	a[1]=-0.5;b[1]=1.5+0.5*f[i+1][1];
    	for(int j=2;j<m;j++)
    	{
    		b[j]=1.0+0.25*f[i+1][j]+0.25*b[j-1];
    		a[j]=-0.25;
    		double tmp=0.75+0.25*a[j-1];
    		a[j]/=tmp;b[j]/=tmp;
		}
		f[i][m]=(3.0+f[i+1][m]+b[m-1])/(2.0+a[m-1]);
		for(int j=m-1;j;j--)f[i][j]=b[j]-a[j]*f[i][j+1];
	}
	printf("%.5f\n",f[x][y]);
	return 0;
}

總結

高斯消元套期望DP的題之前也做過一道,還是迷。