UVa11427 Expect the Expected
生活随笔
收集整理的這篇文章主要介紹了
UVa11427 Expect the Expected
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
?
?
數學期望 概率遞推
每一天的概率都是獨立且相同的。可以先推出每天打i盤贏j盤的概率f[i][j]
f[i][j]=f[i-1][j]*(1-p) + f[i-1][j-1]*p
輸 贏
設此人打一天勝率不滿足要求的概率為p
那么打一天的概率是1*p
打兩天的概率是1*p*(p^2)
以此類推
----
題解待施工?
學自http://www.cnblogs.com/neopenx/p/4282768.html
----
?
WA點:
1、a和b用double存,可能引起了精度誤差。
2、輸出沒換行
1 /*by SilverN*/ 2 #include<algorithm> 3 #include<iostream> 4 #include<cstring> 5 #include<cstdio> 6 #include<cmath> 7 #include<vector> 8 using namespace std; 9 const int mxn=110; 10 int n; 11 double f[mxn][mxn]; 12 int main(){ 13 int T;int i,j,a,b,cas=0; 14 scanf("%d",&T); 15 double p; 16 while(T--){ 17 memset(f,0,sizeof f); 18 scanf("%d/%d%d",&a,&b,&n); 19 p=(double)a/b; 20 f[0][0]=1; 21 f[0][1]=0; 22 for(i=1;i<=n;i++){ 23 f[i][0]=f[i-1][0]*(1-p); 24 for(j=1;j*b<=i*a;j++){ 25 f[i][j]=f[i-1][j]*(1-p)+f[i-1][j-1]*p; 26 } 27 } 28 double res=0.0; 29 for(i=0;i<=n;i++)res+=f[n][i];// 30 double ans=1/res; 31 printf("Case #%d: %d\n",++cas,(int)ans); 32 } 33 return 0; 34 }?
轉載于:https://www.cnblogs.com/SilverNebula/p/6252988.html
總結
以上是生活随笔為你收集整理的UVa11427 Expect the Expected的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: windows 10 快速修复
- 下一篇: C++设计模式——适配器模式(对象适配器