列表

详情


NC51188. Broken robot

描述

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 . On the second line you will be given another two space separated integers i and j  — 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

输出:

0.0000

示例2

输入:

10 14
5 14

输出:

18.0038

原站题解

上次编辑到这里,代码来自缓存 点击恢复默认模板

C++(g++ 7.5.0) 解法, 执行用时: 36ms, 内存消耗: 14332K, 提交时间: 2022-08-11 11:00:00

#include<bits/stdc++.h>
using namespace std;
const int N=1010;
int n,m,x,y;
double a[N][N],f[N][N];
int main(){
	scanf("%d%d",&n,&m);
	scanf("%d%d",&x,&y);
	for(int i=1;i<=m;i++)f[n][i]=0;
	for(int o=n-1;o>=1;o--){
		
		for(int i=1;i<=m;i++){
		a[i][i]=3;a[i][i-1]=a[i][i+1]=-1;
		if(i==1)a[i][i]--;
		if(i==m)a[i][i]--;
		a[i][m+1]=4+f[o+1][i];
		if(i==1)a[i][m+1]--;
		if(i==m)a[i][m+1]--;
	}
	for(int i=1;i<=m;i++){
		if(a[i][i]==0){
			printf("No Solution\n");
			return 0;
		}
		else{
			if(i!=m)a[i][i+1]=a[i][i+1]/a[i][i];
			a[i][m+1]=a[i][m+1]/a[i][i];
			a[i][i]=1;
			if(i!=m){
				a[i+1][i+1]=a[i+1][i+1]-a[i+1][i]*a[i][i+1];
				a[i+1][m+1]=a[i+1][m+1]-a[i+1][i]*a[i][m+1];
				a[i+1][i]=0;
			}
		}
	}
	for(int i=m;i>=1;i--){
		f[o][i]=a[i][m+1];
		if(i!=1)a[i-1][m+1]-=a[i-1][i]*f[o][i];
	}
	}
	printf("%.4lf\n",f[x][y]);
	return 0;
}

C++(clang++11) 解法, 执行用时: 709ms, 内存消耗: 8048K, 提交时间: 2021-03-24 15:38:56

#include<cstdio>
double dp[1005][1005];
int main(){
	int n,m,x,y,i,j,t;
	scanf("%d%d%d%d",&n,&m,&x,&y);
	for(i=n-1;i>=x;--i)
		for(t=1;t<=100;++t)//循环50次就好
			if(m==1)
				dp[i][1]=(dp[i][1]+dp[i+1][1])/2.0+1;
                else{
				dp[i][1]=(dp[i][1]+dp[i][2]+dp[i+1][1])/3.0+1;
				dp[i][m]=(dp[i][m]+dp[i][m-1]+dp[i+1][m])/3.0+1;
				for(j=2;j<m;++j)
					dp[i][j]=(dp[i][j]+dp[i][j-1]+dp[i][j+1]+dp[i+1][j])/4.0+1;
			}
	printf("%.4lf\n",dp[x][y]);//本人实测可过!
	return 0;
}

上一题