• HDU 3853 概率dp


    LOOPS

    Time Limit: 15000/5000 MS (Java/Others)    Memory Limit: 125536/65536 K (Java/Others) Total Submission(s): 2337    Accepted Submission(s): 951

    Problem Description
    Akemi Homura is a Mahou Shoujo (Puella Magi/Magical Girl).
    Homura wants to help her friend Madoka save the world. But because of the plot of the Boss Incubator, she is trapped in a labyrinth called LOOPS.
    The planform of the LOOPS is a rectangle of R*C grids. There is a portal in each grid except the exit grid. It costs Homura 2 magic power to use a portal once. The portal in a grid G(r, c) will send Homura to the grid below G (grid(r+1, c)), the grid on the right of G (grid(r, c+1)), or even G itself at respective probability (How evil the Boss Incubator is)! At the beginning Homura is in the top left corner of the LOOPS ((1, 1)), and the exit of the labyrinth is in the bottom right corner ((R, C)). Given the probability of transmissions of each portal, your task is help poor Homura calculate the EXPECT magic power she need to escape from the LOOPS.
     
    Input
    The first line contains two integers R and C (2 <= R, C <= 1000).
    The following R lines, each contains C*3 real numbers, at 2 decimal places. Every three numbers make a group. The first, second and third number of the cth group of line r represent the probability of transportation to grid (r, c), grid (r, c+1), grid (r+1, c) of the portal in grid (r, c) respectively. Two groups of numbers are separated by 4 spaces.
    It is ensured that the sum of three numbers in each group is 1, and the second numbers of the rightmost groups are 0 (as there are no grids on the right of them) while the third numbers of the downmost groups are 0 (as there are no grids below them).
    You may ignore the last three numbers of the input data. They are printed just for looking neat.
    The answer is ensured no greater than 1000000.
    Terminal at EOF
     
    Output
    A real number at 3 decimal places (round to), representing the expect magic power Homura need to escape from the LOOPS.
     
    Sample Input
    2 2 0.00 0.50 0.50 0.50 0.00 0.50 0.50 0.50 0.00 1.00 0.00 0.00
     
    Sample Output
    6.000
     
    Source
     
    Recommend
    chenyongfu
     
     
     

    题目大意

        有一个人被困在一个 R*C(2<=R,C<=1000) 的迷宫中,起初他在 (1,1) 这个点,迷宫的出口是 (R,C)。在迷宫的每一个格子中,他能花费 2 个魔法值开启传送通道。假设他在 (x,y) 这个格子中,开启传送通道之后,有 p_lift[i][j] 的概率被送到 (x,y+1),有 p_down[i][j] 的概率被送到 (x+1,y),有 p_loop[i][j]  的概率被送到 (x,y)。问他到出口需要花费的魔法值的期望是多少。


    做法分析

        令:f[i][j] 表示从 (i,j) 这个点到出口 (R,C) 花费的魔法值的期望。

        那么,我们有:

            f[i][j] = 2+p_loop[i][j]*f[i][j] + p_left[i][j]*f[i][j+1] + p_down[i][j]*f[i+1][j]

        移项可得:         (1-p_loop[i][j])*f[i][j] = 2+p_left[i][j](f[i][j+1] + p_down[i][j]*f[i+1][j]

        于是我们可以倒着递推了

     1 #include<iostream>
     2 #include<cstring>
     3 #include<cstdlib>
     4 #include<cstdio>
     5 #include<algorithm>
     6 #include<cmath>
     7 #include<queue>
     8 #include<map>
     9 
    10 #define N 1005
    11 #define M 15
    12 #define mod 1000000007
    13 #define mod2 100000000
    14 #define ll long long
    15 #define maxi(a,b) (a)>(b)? (a) : (b)
    16 #define mini(a,b) (a)<(b)? (a) : (b)
    17 
    18 using namespace std;
    19 
    20 double a[N][N][3];
    21 double dp[N][N];
    22 
    23 int main()
    24 {
    25     int i,j;
    26     int r,c;
    27     double p;
    28    // freopen("data.in","r",stdin);
    29     //scanf("%d",&T);
    30     //for(int cnt=1;cnt<=T;cnt++)
    31     //while(T--)
    32     while(scanf("%d%d",&r,&c)!=EOF)
    33     {
    34         for(i=1;i<=r;i++){
    35             for(j=1;j<=c;j++){
    36                 scanf("%lf%lf%lf",&a[i][j][0],&a[i][j][1],&a[i][j][2]);
    37                // printf(" %.3lf %.3lf %.3lf
    ",a[i][j][0],a[i][j][1],a[i][j][2]);
    38             }
    39         }
    40 
    41         for(i=r;i>=1;i--){
    42             for(j=c;j>=1;j--){
    43                 dp[i][j]=(2+a[i][j][1]*dp[i][j+1]+a[i][j][2]*dp[i+1][j]);
    44                 if( (1-a[i][j][0])<1e-6){
    45                     dp[i][j]=0;
    46                 }
    47                 else
    48                     dp[i][j]/=(1-a[i][j][0]);
    49             }
    50         }
    51         printf("%.3f
    ",dp[1][1]);
    52 
    53     }
    54 
    55     return 0;
    56 }
  • 相关阅读:
    不指定虚拟路径的前提下通过http访问pdf、图片等文件
    Java Service Wrapper将java程序设置为服务
    C# 上传excel文档解析出里面数据
    如何同时启动多个Tomcat服务
    struts2的action的知识点和利用action向页面注入值的操作
    IOS6 字体高亮显示
    微软安全新闻聚焦-双周刊第三十五期
    工厂三兄弟之工厂方法模式(四)
    清空文件夹里面的所有文件和文件夹
    OOP设计模式[JAVA]——03职责链模式
  • 原文地址:https://www.cnblogs.com/njczy2010/p/3918302.html
Copyright © 2020-2023  润新知