第四届 The number of steps

本文探讨了一种特殊的三角形迷宫结构,每个房间只能前往左侧及下侧房间。从顶层出发寻找位于最底层左端的钥匙。通过概率分析,计算到达钥匙所需的期望步骤数。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

Description

Mary stands in a strange maze, the maze looks like a triangle(the first layer have one room,the second layer have two rooms,the third layer have three rooms …). Now she stands at the top point(the first layer), and the KEY of this maze is in the lowest layer’s leftmost room. Known that each room can only access to its left room and lower left and lower right rooms .If a room doesn’t have its left room, the probability of going to the lower left room and lower right room are a and b (a + b = 1 ). If a room only has it’s left room, the probability of going to the room is 1. If a room has its lower left, lower right rooms and its left room, the probability of going to each room are c, d, e (c + d + e = 1). Now , Mary wants to know how many steps she needs to reach the KEY. Dear friend, can you tell Mary the expected number of steps required to reach the KEY?

Input

There are no more than 70 test cases.

In each case , first Input a positive integer n(0<n<45), which means the layer of the maze, then Input five real number a, b, c, d, e. (0<=a,b,c,d,e<=1, a+b=1, c+d+e=1).

The input is terminated with 0. This test case is not to be processed.

Output

Please calculate the expected number of steps required to reach the KEY room, there are 2 digits after the decimal point.

Sample Input

30.3 0.70.1 0.3 0.60

Sample Output

3.41

#include <iostream>
#include <cstdio>
#include <math.h>
#include <iomanip>
#include <cstring>
#include <cstdlib>
#include <algorithm>
#include <string>
#include <queue>
using namespace std;

int main()
{
    int N;
    while(cin>>N&&N!=0)
    {
        double A[50][50]={0.0};
        double a,b,c,d,e;
        cin>>a>>b>>c>>d>>e;
        A[N][1]=0;
        for(int i=2;i<=N;i++)
            A[N][i]=A[N][i]+A[N][i-1]+1;
        for(int i=N-1;i>=1;i--)
            for(int j=1;j<=i;j++)
           {
              if(j==1)
                A[i][j]+=a*(A[i+1][j]+1)+b*(A[i+1][j+1]+1);
              else
                A[i][j]+=e*(A[i][j-1]+1)+d*(A[i+1][j+1]+1)+c*(A[i+1][j]+1);
           }
        cout<<setiosflags(ios::fixed)<<setprecision(2);
        cout<<A[1][1]<<endl;
    }
    return 0;
}



转载于:https://www.cnblogs.com/MisdomTianYa/p/6581749.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值