CF464D.World of Darkraft - 2

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Roma found a new character in the game "World of Darkraft - 2". In this game the character fights monsters, finds the more and more advanced stuff that lets him fight stronger monsters.

The character can equip himself with kk distinct types of items. Power of each item depends on its level (positive integer number). Initially the character has one 11 -level item of each of the kk types.

After the victory over the monster the character finds exactly one new randomly generated item. The generation process looks as follows. Firstly the type of the item is defined; each of the kk types has the same probability. Then the level of the new item is defined. Let's assume that the level of player's item of the chosen type is equal to tt at the moment. Level of the new item will be chosen uniformly among integers from segment [ 11 ; t+1t+1 ].

From the new item and the current player's item of the same type Roma chooses the best one (i.e. the one with greater level) and equips it (if both of them has the same level Roma choses any). The remaining item is sold for coins. Roma sells an item of level xx of any type for xx coins.

Help Roma determine the expected number of earned coins after the victory over nn monsters.

输入格式

The first line contains two integers, nn and kk ( 1<=n<=1051<=n<=10^{5} ; 1<=k<=1001<=k<=100 ).

输出格式

Print a real number — expected number of earned coins after victory over nn monsters. The answer is considered correct if its relative or absolute error doesn't exceed 10910^{-9} .

输入输出样例

  • 输入#1

    1 3
    

    输出#1

    1.0000000000
    
  • 输入#2

    2 1
    

    输出#2

    2.3333333333
    
  • 输入#3

    10 2
    

    输出#3

    15.9380768924
    
首页