博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
One Person Game(概率+数学)
阅读量:5767 次
发布时间:2019-06-18

本文共 2682 字,大约阅读时间需要 8 分钟。

There is a very simple and interesting one-person game. You have 3 dice, namelyDie1Die2 and Die3Die1 has K1 faces. Die2 has K2 faces. Die3 has K3 faces. All the dice are fair dice, so the probability of rolling each value, 1 to K1K2K3 is exactly 1 / K1, 1 / K2 and 1 / K3. You have a counter, and the game is played as follow:

  1. Set the counter to 0 at first.
  2. Roll the 3 dice simultaneously. If the up-facing number of Die1 is a, the up-facing number of Die2 is b and the up-facing number of Die3 is c, set the counter to 0. Otherwise, add the counter by the total value of the 3 up-facing numbers.
  3. If the counter's number is still not greater than n, go to step 2. Otherwise the game is ended.

Calculate the expectation of the number of times that you cast dice before the end of the game.

 

Input

 

There are multiple test cases. The first line of input is an integer T (0 < T <= 300) indicating the number of test cases. Then T test cases follow. Each test case is a line contains 7 non-negative integers nK1K2K3abc (0 <= n <= 500, 1 < K1K2K3 <= 6, 1 <= a <= K1, 1 <= b <= K2, 1 <= c <= K3).

 

Output

 

For each test case, output the answer in a single line. A relative error of 1e-8 will be accepted.

 

Sample Input

20 2 2 2 1 1 10 6 6 6 1 1 1

Sample Output

1.1428571428571431.004651162790698 题意: T 组数据, 每组数据一行,n, K1, K2, K3, a, b, c 代表 3 个骰子有 K1,K2,K3 个面 用这三个骰子玩游戏,首先,计数器清零,掷一次,如果三个骰子中,第一个为 a, 第二个为b,第三个为c ,计数器清零,否则,计数器累加三个骰子之和。 如此重复执行第二步 ,直到计数器和大于 n 问计数器大于 n 的游戏次数期望 要推导出个递推式子,然后发现都和 dp[0] 相关,分离系数,我也是看了这篇博客才懂的,写得很好:
1 #include 
2 #include
3 #include
4 using namespace std; 5 6 #define MAXN 600 7 8 int n, k1, k2, k3, a, b, c; 9 double A[MAXN],B[MAXN];10 double p0;11 double p[100];12 13 int main()14 {15 int T;16 cin>>T;17 while (T--)18 {19 scanf("%d%d%d%d%d%d%d",&n,&k1,&k2,&k3,&a,&b,&c);20 memset(A,0,sizeof(A));21 memset(B,0,sizeof(B));22 memset(p,0,sizeof(p));23 24 p0=1.0/(k1*k2*k3); //单位概率,变为 0 的概率25 for (int j1=1;j1<=k1;j1++)26 for (int j2=1;j2<=k2;j2++)27 for (int j3=1;j3<=k3;j3++)28 if(j1!=a||j2!=b||j3!=c)29 p[j1+j2+j3]+=p0; //掷出某一个和的概率30 31 for (int i=n;i>=0;i--)//因为要循环到大于 n32 {33 for (int j=1;j<=k1+k2+k3;j++)34 {35 A[i]+=p[j]*A[i+j];36 B[i]+=p[j]*B[i+j];37 }38 A[i]+=p0;39 B[i]+=1.0;40 }41 double ans = B[0]/(1.0-A[0]);42 printf("%.15lf\n",ans);43 }44 return 0;45 }
View Code

 

 

转载于:https://www.cnblogs.com/haoabcd2010/p/6700963.html

你可能感兴趣的文章
Powershell进阶学习(4) Powershell强大的利器“管道”
查看>>
关于GNU GPL
查看>>
request.getServletPath()和request.getPathInfo()用法
查看>>
nginx在响应request header时候带下划线的需要开启的选项
查看>>
Linux下DHCP服务器配置
查看>>
AndroidStudio中导入SlidingMenu报错解决方案
查看>>
我的IDEA配置
查看>>
myeclipse显示行号
查看>>
编写高性能的java程序
查看>>
Spring 的配置详解
查看>>
linux已经不存在惊群现象
查看>>
上位机和底层逻辑的解耦
查看>>
关于微信二次分享 配置标题 描述 图片??
查看>>
springcloud使用zookeeper作为config的配置中心
查看>>
校园火灾Focue-2---》洗手间的一套-》电梯
查看>>
css控制文字换行
查看>>
bzoj1913
查看>>
bzoj2301(莫比乌斯反演)
查看>>
【转】对于HttpClient和HtmlUnit的理解
查看>>
L104
查看>>