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 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$ ).
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 .
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 .
输入输出样例
输入 #1
4 2 100 3 5 7
输出 #1
5.7428571429
输入 #2
6 2 1 2 4 8 16 32
输出 #2
8.5000000000
In the first sample, we are supposed to split $4$ levels into $2$ regions. It's optimal to create the first region with only one level (it must be the first level). Then, the second region must contain other three levels.
In the second sample, it's optimal to split levels into two regions with $3$ levels each.
In the second sample, it's optimal to split levels into two regions with $3$ levels each.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted