CF98E.Help Shrek and Donkey

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Shrek and the Donkey (as you can guess, they also live in the far away kingdom) decided to play a card game called YAGame. The rules are very simple: initially Shrek holds mm cards and the Donkey holds nn cards (the players do not see each other's cards), and one more card lies on the table face down so that both players cannot see it as well. Thus, at the beginning of the game there are overall m+n+1m+n+1 cards. Besides, the players know which cards the pack of cards consists of and their own cards (but they do not know which card lies on the table and which ones the other player has). The players move in turn and Shrek starts. During a move a player can:

  • Try to guess which card is lying on the table. If he guesses correctly, the game ends and he wins. If his guess is wrong, the game also ends but this time the other player wins.
  • Name any card from the pack. If the other player has such card, he must show it and put it aside (so that this card is no longer used in the game). If the other player doesn't have such card, he says about that.

Recently Donkey started taking some yellow pills and winning over Shrek. Now Shrek wants to evaluate his chances to win if he too starts taking the pills.Help Shrek assuming the pills are good in quality and that both players using them start playing in the optimal manner.

输入格式

The first line contains space-separated integers mm and nn ( 0<=m,n<=10000<=m,n<=1000 ).

输出格式

Print space-separated probabilities that Shrek wins and Donkey wins correspondingly; the absolute error should not exceed 10910^{-9} .

输入输出样例

  • 输入#1

    0 3
    

    输出#1

    0.25 0.75
    
  • 输入#2

    1 0
    

    输出#2

    1 0
    
  • 输入#3

    1 1
    

    输出#3

    0.5 0.5
    
首页