题库练习 Levels and Regions
← 上一题 下一题 →

A10323 | Levels and Regions

时间限制1s
内存限制256MB
通过 / 提交0/0

题目描述

Radewoosh is playing a computer game. There are $n$ levels, numbered $1$ through $n$ . Levels are divided into $k$ regions (groups). Each region contains some positive number of consecutive levels.

The game repeats the the following process:

1. If all regions are beaten then the game ends immediately. Otherwise, the system finds the first region with at least one non-beaten level. Let $X$ denote this region.
2. The system creates an empty bag for tokens. Each token will represent one level and there may be many tokens representing the same level.
- For each already beaten level $i$ in the region $X$ , the system adds $t_{i}$ tokens to the bag (tokens representing the $i$ -th level).
- Let $j$ denote the first non-beaten level in the region $X$ . The system adds $t_{j}$ tokens to the bag.
3. Finally, the system takes a uniformly random token from the bag and a player starts the level represented by the token. A player spends one hour and beats the level, even if he has already beaten it in the past.

Given $n$ , $k$ and values $t_{1},t_{2},...,t_{n}$ , your task is to split levels into regions. Each level must belong to exactly one region, and each region must contain non-empty consecutive set of levels. What is the minimum possible expected number of hours required to finish the game?

输入格式

The first line of the input contains two integers $n$ and $k$ ( $1<=n<=200000$ , $1<=k<=min(50,n)$ ) — the number of levels and the number of regions, respectively.

The second line contains $n$ integers $t_{1},t_{2},...,t_{n}$ ( $1<=t_{i}<=100000$ ).

输出格式

Print one real number — the minimum possible expected value of the number of hours spent to finish the game if levels are distributed between regions in the optimal way. Your answer will be considered correct if its absolute or relative error does not exceed $10^{-4}$ .

Namely: let's assume that your answer is $a$ , and the answer of the jury is $b$ . The checker program will consider your answer correct if ![](/uploads/acgo/image/9c8d98d02657a08f_f493a66b404a.jpeg).

输入输出样例

输入 #1
4 2
100 3 5 7
输出 #1
5.7428571429
输入 #2
6 2
1 2 4 8 16 32
输出 #2
8.5000000000
C++ 编辑器
输入
输出