【题解】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的题之前也做过一道,还是迷。

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值