HDU 4405Aeroplane chess 概率dp

来源:互联网 发布:办公软件的英文 编辑:程序博客网 时间:2024/05/21 15:01
F - Aeroplane chess
Time Limit:1000MS     Memory Limit:32768KB     64bit IO Format:%I64d & %I64u
Submit Status Practice HDU 4405
Appoint description: 

Description

Hzz loves aeroplane chess very much. The chess map contains N+1 grids labeled from 0 to N. Hzz starts at grid 0. For each step he throws a dice(a dice have six faces with equal probability to face up and the numbers on the faces are 1,2,3,4,5,6). When Hzz is at grid i and the dice number is x, he will moves to grid i+x. Hzz finishes the game when i+x is equal to or greater than N. 

There are also M flight lines on the chess map. The i-th flight line can help Hzz fly from grid Xi to Yi (0<Xi<Yi<=N) without throwing the dice. If there is another flight line from Yi, Hzz can take the flight line continuously. It is granted that there is no two or more flight lines start from the same grid. 

Please help Hzz calculate the expected dice throwing times to finish the game. 
 

Input

There are multiple test cases. 
Each test case contains several lines. 
The first line contains two integers N(1≤N≤100000) and M(0≤M≤1000). 
Then M lines follow, each line contains two integers Xi,Yi(1≤Xi<Yi≤N).   
The input end with N=0, M=0. 
 

Output

For each test case in the input, you should output a line indicating the expected dice throwing times. Output should be rounded to 4 digits after decimal point. 
 

Sample Input

2 08 32 44 57 80 0
 

Sample Output

1.16672.3441

 


模拟飞行棋

倒着推期望的时候要注意特判能直接飞的点

//做了五题概率dp了终于1A了 开心~

ACcode:

#include <iostream>#include <cstdio>#include <cstring>#define maxn 100010using namespace std;double dp[maxn];int from[maxn];int to[maxn];int main(){    int n,m;    while(scanf("%d%d",&n,&m),n|m){        memset(from,0,sizeof(from));        memset(dp,0,sizeof(dp));        memset(to,0,sizeof(to));        for(int i=0;i<m;++i){            int x,y;            scanf("%d%d",&x,&y);            to[x]=y;            from[y]=x;        }        for(int i=1;i<=n;++i){                if(to[to[i]])to[i]=to[to[i]];                if(from[from[i]])from[i]=from[from[i]];        }      //  for(int i=1;i<=n;++i)printf("to[%d] = %d      from[%d] = %d\n",i,to[i],i,from[i]);        for(int i=n-1;i>=0;--i){            double sum=0;            double e=1.0/6;            if(to[i]){                dp[i]=dp[to[i]];                continue;            }            for(int k=1;k<=6;++k)                    sum+=dp[k+i]*e;                    dp[i]=sum+1;        }        printf("%.4lf\n",dp[0]);    }    return 0;}


0 0
原创粉丝点击