There is a very simple and interesting one-person game. You have 3 dice, namelyDie1, Die2 and Die3. Die1 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 K1, K2, K3 is exactly 1 / K1, 1 / K2 and 1 / K3. You have a counter, and the game is played as follow:
- Set the counter to 0 at first.
- 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.
- 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 n, K1, K2, K3, a, b, c (0 <= n <= 500, 1 < K1, K2, K3 <= 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 #include2 #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 }