Lady Layton and Stone Game

TimeLimit:2000MS  MemoryLimit:524288KB
64-bit integer IO format:%I64d
未提交 | 登录后收藏
Problem Description
Katori has many piles of stones, where there are $a_i$ piles containing exactly $i$ stones for $i = 1, 2, \ldots, n$.

Now, she wants to collect all these piles into one pile by merging one or more times. Each time she can pick $k$ $(L \leq k \leq R)$ piles and merge them into one, and the cost of that will be the number of stones in the new pile.

Can you help her find the best way to achieve that with the minimum possible total cost?
Input
There are several test cases.

The first line contains an integer $T$ $(1 \leq T \leq 10)$, denoting the number of test cases. Then follow all the test cases.

For each test case, the first line contains three integers $n$, $L$ and $R$ $(1 \leq n \leq 10^5, 2 \leq L \leq R \leq \sum_{i = 1}^{n}{a_i})$, denoting the maximum number of stones in each piles at the beginning, the lower bound and the upper bound of the number of piles she can merge at once, respectively.

The second line contains $n$ integers, where the $i$-th integer is $a_i$ $(1 \leq a_i \leq 10^5)$, the number of piles containing exactly $i$ stones at the beginning.
Output
For each test case, output in one line $-1$ if it is impossible for her to achieve the task, or otherwise the minimum total cost to finish that.
SampleInput
4
1 2 2
2
3 2 2
1 1 1
3 2 3
1 1 1
4 3 3
1 1 1 1
SampleOutput
2
9
6
-1
 HintFor the first sample case, there are two piles [1, 1] at the beginning. The best way is to merge [1, 1] into [2] directly, and the cost is 2. For the second sample case, there are three piles [1, 2, 3] at the beginning. The best way is to merge [1, 2] into [3] at first, and then merge [3, 3] into [6]. The minimum total cost is 3 + 6 = 9. For the third sample case, there are three piles [1, 2, 3] at the beginning. The best way is to merge [1, 2, 3] into [6] directly, and the cost is 6. For the fourth sample case, there are four piles [1, 2, 3, 4] at the beginning. Neither can she collect them into one pile directly nor by merging several times, so it is impossible for her to achieve the task.
Submit
题目统计信息详细
总AC数0
通过人数0
尝试人数0
总提交量0
AC率0.00%
AC该题后可以添加标签
贴完标签可以获得20ACB。
并且可以获得本题所有提交代码查看权限。
点击标题可以显示标签。
如果你还没认真思考过这题,请不要查看标签
如果您已经通过了该题,请务为该题贴上标签

T^T Online Judge

[BUG反馈] [FAQ] [闽ICP备17026590号-1]
当前版本:3.24 系统时间: