CodeForces 540D Bad Luck Island (概率dp)

 http://codeforces.com/problemset/problem/540/D

Bad Luck Island

The Bad Luck Island is inhabited by three kinds of species: r rocks, s scissors and p papers. At some moments of time two random individuals meet (all pairs of individuals can meet equiprobably), and if they belong to different species, then one individual kills the other one: a rock kills scissors, scissors kill paper, and paper kills a rock. Your task is to determine for each species what is the probability that this species will be the only one to inhabit this island after a long enough period of time.

Input

The single line contains three integers rs and p (1 ≤ r, s, p ≤ 100) — the original number of individuals in the species of rock, scissors and paper, respectively.

Output

Print three space-separated real numbers: the probabilities, at which the rocks, the scissors and the paper will be the only surviving species, respectively. The answer will be considered correct if the relative or absolute error of each number doesn't exceed 10 - 9.

Sample test(s)
input
2 2 2
output
0.333333333333 0.333333333333 0.333333333333
input
2 1 2
output
0.150000000000 0.300000000000 0.550000000000
input
1 1 3
output
0.057142857143 0.657142857143 0.285714285714

题意:

有r个石头,s个剪刀,p个布在一个岛上。问在足够长的时间里,石头,剪刀,布分别存活下来的概率。

思路:

定义dp[i][j][k]:还剩下i个石头,s个剪刀,p个布的概率。

初始dp[r][s][p] = 1;

转移:

总情况数:sum= i*j+j*k+i*k;

则dp[i-1][j][k] = (i*k/sum)*dp[i][j][k];dp[i][j-1][k] = (i*j/sum)*dp[i][j][k];dp[i][j][k-1] = (j*k/sum)*dp[i][j][k];

如果只剩下两种生物在岛上,则可以不用转移了。因为任意两种生物遇到可以肯定谁赢。

因此最后求和(看代码)。

#include <iostream>
#include <cstring>
#include <cstdio>
#include <algorithm>
#include <cmath>
#include <cstdlib>
#include <limits>
#include <queue>
#include <stack>
#include <vector>
#include <map>

using namespace std;
typedef  long long LL;

#define N 110
#define INF 0x3f3f3f3f
#define PI acos (-1.0)
#define EPS 1e-8
#define met(a, b) memset (a, b, sizeof (a))

double dp[N][N][N];

int main ()
{
    int r, s, p;

    while (scanf ("%d %d %d", &r, &s, &p) != EOF)
    {
        met (dp, 0);

        dp[r][s][p] = 1.0;

        for (int i=r; i>=1; i--)
        for (int j=s; j>=1; j--)
        for (int k=p; k>=1; k--)
        {
            double sum = i*j + j*k + i*k;

            dp[i-1][j][k] += dp[i][j][k] * i*k*1.0/sum;
            dp[i][j-1][k] += dp[i][j][k] * j*i*1.0/sum;
            dp[i][j][k-1] += dp[i][j][k] * k*j*1.0/sum;
        }

        double ans1 = 0, ans2 = 0, ans3 = 0;

        for (int i=1; i<=100; i++)
        for (int j=0; j<=100; j++)
        {
            ans1 += dp[i][j][0];
            ans2 += dp[0][i][j];
            ans3 += dp[j][0][i];
        }

        printf ("%.10f %.10f %.10f\n", ans1, ans2, ans3);
    }
    return 0;
}



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

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

_大太阳_

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值