CF540D.Bad Luck Island

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

The Bad Luck Island is inhabited by three kinds of species: rr rocks, ss scissors and pp 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.

输入格式

The single line contains three integers rr , ss and pp ( 1<=r,s,p<=1001<=r,s,p<=100 ) — the original number of individuals in the species of rock, scissors and paper, respectively.

输出格式

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 10910^{-9} .

输入输出样例

  • 输入#1

    2 2 2
    

    输出#1

    0.333333333333 0.333333333333 0.333333333333
    
  • 输入#2

    2 1 2
    

    输出#2

    0.150000000000 0.300000000000 0.550000000000
    
  • 输入#3

    1 1 3
    

    输出#3

    0.057142857143 0.657142857143 0.285714285714
    
首页