UVa 10759 Dice Throwing (概率DP)

10759 - Dice Throwing

Time limit: 3.000 seconds

http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=24&page=show_problem&problem=1700

n common cubic dice are thrown. What is the probability that the sum of all thrown dice is at least x?
  
Input

The input file contains several test cases. Each test case consists two integers n (1<=n<=24) and x(0<=x<150). The meanings of n and x are given in the problem statement. Input is terminated by a case where n=0 and x=0. This case should not be processed.

 

Output

For each line of input produce one line of output giving the requested probability as a proper fraction in lowest terms in the format shown in the sample output. All numbers appearing in output are representable in unsigned 64-bit integers. The last line of input contains two zeros and it should not be processed.

Sample Input         Output for Sample Input

3 9
1 7
24 24
15 76
24 56
24 143
23 81
7 38
0 0
                               
20/27
0
1
11703055/78364164096
789532654692658645/789730223053602816
25/4738381338321616896
1/2

55/46656


从下往上慢慢加~

f[i + 1][j + k] += f[i][j];


完整代码:

/*0.015s*/

#include<cstdio>
typedef unsigned long long ull;

ull f[25][150];

ull gcd(ull a, ull b)
{
	return b ? gcd(b, a % b) : a;
}

int main()
{
	int i, j, k, n, x;
	ull ans, b, g;
	for (i = 1; i <= 6; ++i)
		f[1][i] = 1;
	for (i = 1; i < 25; ++i)
		for (j = i; j <= 6 * i; ++j)
			for (k = 1; k <= 6; ++k)
				f[i + 1][j + k] += f[i][j];
	while (scanf("%d%d", &n, &x), n)
	{
		if (x > 6 * n)
		{
			puts("0");
			continue;
		}
		else if (x <= n)
		{
			puts("1");
			continue;
		}
		ans = 0, b = 1;
		for (i = x; i <= 6 * n; ++i) ans += f[n][i];
		for (i = 0; i < n; ++i) b *= 6;
		g = gcd(ans, b);
		printf("%llu/%llu\n", ans / g, b / g);
	}
}


  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值