HDU3853: LOOPS (probability DP)

Source: Internet
Author: User

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 does t 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 edevil 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 specific CT 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 specific CT 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

The maze is an R * C Layout. Each grid shows the probability of staying in the same place, going one to the right, going down one grid. The starting point is (), and the ending point is (R, c) two points of energy are consumed each time a grid is taken, and the final energy expectation is obtained.

Idea: get started with expected DP. dp [I] [j] records the expectations from I, j to the end, map [I] [j] [k], record the probability of three conditions for each grid. Calculate the probability based on the expected mathematical formula.

 

 

# Include <stdio. h> # include <string. h> # include <math. h ># include <algorithm> using namespace std; double dp [1005] [1005], map [1005] [1005] [3]; int main () {int r, c, I, j, k; while (~ Scanf ("% d", & r, & c) {memset (dp, 0, sizeof (dp); for (I = 1; I <= r; I ++) for (j = 1; j <= c; j ++) for (k = 0; k <3; k ++) scanf ("% lf ", & map [I] [j] [k]); for (I = r; I> 0; I --) {for (j = c; j> 0; j --) {if (I = r & j = c) // The end point is continue. if (fabs (1-map [I] [j] [0]) <1e-7) // The probability of staying in the original position is 1 continue; dp [I] [j] = (map [I] [j] [1] * dp [I] [j + 1] + map [I] [j] [2] * dp [I + 1] [j] + 2) /(1-map [I] [j] [0]); // + 2 is the energy consumed to the next grid} printf ("%. 3lf \ n ", dp [1] [1]);} return 0 ;}

 

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.