概率 light oj 1248
Posted HelloWorld!--By-MJY
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了概率 light oj 1248相关的知识,希望对你有一定的参考价值。
t组样例
n<100010
dp[i] 从i翻到n面的期望
接下来翻 可能是i面已经有的 也可能是n-i面没有的
dp[i]=i/n*(dp[i]+1)+(n-i)/n*(dp[i+1]+1);
dp[n]=0;
1 #include<stdio.h> 2 #include<algorithm> 3 #include<string.h> 4 #include<math.h> 5 6 using namespace std; 7 8 #define MAXN 100010 9 double dp[MAXN]; 10 11 int main() 12 { 13 int t,ca; 14 ca=1; 15 scanf("%d",&t); 16 while(t--) 17 { 18 int n; 19 scanf("%d",&n); 20 dp[n]=0; 21 for(int i=n-1;i>=0;i--) 22 { 23 dp[i]=dp[i+1]+double(n)/(n-i); 24 } 25 printf("Case %d: %.6lf\n",ca++,dp[0]); 26 } 27 28 29 return 0; 30 }
以上是关于概率 light oj 1248的主要内容,如果未能解决你的问题,请参考以下文章
Light OJ 1030 - Discovering Gold(概率dp)
Light OJ 1317 Throwing Balls into the Baskets 概率DP