#P12940. [NERC 2019] Game Relics
[NERC 2019] Game Relics
题目描述
Esports is a form of competitive sports using video games. Dota 2 is one of the most popular competitive video games in Esports. Recently, a new video game Dota 3 was released. In Dota 3 a player can buy some relics for their hero. Relics are counters that track hero's actions and statistics in a game.
Gloria likes to play Dota 3, so she wants to buy all available relics for her favorite hero.
Relics can be bought using an in-game currency called shards. Each relic has its own price --- shards for the -th relic. A player can buy a relic using one of the following options:
- Pay shards to buy the -th relic;
- Pay shards and randomly get one of all relics. The probability of getting a relic is the same for all relics. If a duplicate relic is received, then the relic is recycled and shards are given back to the player.
Gloria wants to buy all relics. Help her minimize the expected number of shards she spends to buy all the relics.
输入格式
The first line contains two integers and (; ) --- the number of relics and the cost to receive a random relic.
The second line consists of integers (; ) --- the prices of relics.
输出格式
Print a single real number --- the minimum expected number of shards that Gloria must spend to buy all the relics.
The absolute or relative error should not exceed .
2 20
25 100
47.50000000000000000
4 30
60 50 60 80
171.25000000000000000
提示
In the first example, the optimal strategy is to randomly get one of the two relics paying shards. Then there are two scenarios.
The first one happens if Gloria receives the first relic. Then she keeps getting random relics until she obtains the second relic. The expected number of shards to spend in this scenario is .
In the second scenario, Gloria initially gets the second relic. Then it is better to buy the first relic for shards, so the expected number of shards to spend in this scenario is .
Thus, the expected number of shards to spend is .