lightoj 1030 概率dp

来源:互联网 发布:水电算量软件 编辑:程序博客网 时间:2024/05/29 16:16

1030 - Discovering Gold
  PDF (English)StatisticsForum
Time Limit: 2 second(s)Memory Limit: 32 MB

You are in a cave, a long cave! The cave can be representedby a 1 x N grid. Each cell of the cave can contain any amount of gold.

Initially you are in position 1. Now each turn youthrow a perfect6 sided dice. If you get X in the dice afterthrowing, you addX to your position and collect all the gold from thenew position. If your new position is outside the cave, then you keep throwingagain until you get a suitable result. When you reach theNthposition you stop your journey. Now you are given the information about thecave, you have to find out theexpected number of gold you can collectusing the given procedure.

Input

Input starts with an integer T (≤ 100),denoting the number of test cases.

Each case contains a blank line and an integer N (1≤ N ≤ 100) denoting the dimension of the cave. The next linecontainsN space separated integers. The ith integerof this line denotes the amount of gold you will get if you come to theithcell. You may safely assume that all the given integers will be non-negativeand no integer will be greater than1000.

Output

For each case, print the case number and the expected numberof gold you will collect. Errors less than10-6 will beignored.

Sample Input

Output for Sample Input

3

 

1

101

 

2

10 3

 

3

3 6 9

Case 1: 101.0000000000

Case 2: 13.000

Case 3: 15


题意: 有n个格子, 每个格子有对应的金子数目, 从第一个格子开始,每次扔一个骰子, 骰子朝上的点数决定你向前走的步数, 如果超过n,那么一直扔, 直到小于n, 到最后到达n点, 求所得的期望金子的总数目.


分析: 求期望的话可以倒着来, 从n开始到1, dp[i+j](j>=1 && j<=6)可以转移到dp[i],当i+j<=n时, 扔骰子是等概率的, 因此dp[i] = dp[i+j]/6, 但是当i+j>n的时候就不是1/6的概率了,要看j的最大值能取到多少, 然后就是1/j;  


#include<bitset>#include<map>#include<vector>#include<cstdio>#include<iostream>#include<cstring>#include<string>#include<algorithm>#include<cmath>#include<stack>#include<queue>#include<set>#define inf 0x3f3f3f3f#define mem(a,x) memset(a,x,sizeof(a))#define F first#define S secondusing namespace std;typedef long long ll;typedef unsigned long long ull;typedef pair<int,int> pii;inline int in(){    int res=0;char c;int f=1;    while((c=getchar())<'0' || c>'9')if(c=='-')f=-1;    while(c>='0' && c<='9')res=res*10+c-'0',c=getchar();    return res*f;}const int N=100010,MOD=1e9+7;int a[123];double dp[123];int main(){    int T=in(),ca=1;    while(T--)    {        int n=in();        for(int i=0;i<n;i++)        {            a[i]=in();        }        dp[n-1]=a[n-1];        for(int i=n-2;i>=0;i--)        {            dp[i]=a[i];            int k=0;            for(int j=i+1;j<=i+6;j++)            {                if(j==n) break;                k++;            }            for(int j=i+1;j<=i+6;j++)            {                if(j<n)                {                    dp[i]+=dp[j]*1.0/k;                }            }        }        printf("Case %d: %.9lf\n",ca++,dp[0]);    }    return 0;}



0 0
原创粉丝点击