A14835 | Balanced Stone Heaps
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
There are $n$ heaps of stone. The $i$ -th heap has $h_i$ stones. You want to change the number of stones in the heap by performing the following process once:
- You go through the heaps from the $3$ -rd heap to the $n$ -th heap, in this order.
- Let $i$ be the number of the current heap.
- You can choose a number $d$ ( $0 \le 3 \cdot d \le h_i$ ), move $d$ stones from the $i$ -th heap to the $(i - 1)$ -th heap, and $2 \cdot d$ stones from the $i$ -th heap to the $(i - 2)$ -th heap.
- So after that $h_i$ is decreased by $3 \cdot d$ , $h_{i - 1}$ is increased by $d$ , and $h_{i - 2}$ is increased by $2 \cdot d$ .
- You can choose different or same $d$ for different operations. Some heaps may become empty, but they still count as heaps.
What is the maximum number of stones in the smallest heap after the process?
- You go through the heaps from the $3$ -rd heap to the $n$ -th heap, in this order.
- Let $i$ be the number of the current heap.
- You can choose a number $d$ ( $0 \le 3 \cdot d \le h_i$ ), move $d$ stones from the $i$ -th heap to the $(i - 1)$ -th heap, and $2 \cdot d$ stones from the $i$ -th heap to the $(i - 2)$ -th heap.
- So after that $h_i$ is decreased by $3 \cdot d$ , $h_{i - 1}$ is increased by $d$ , and $h_{i - 2}$ is increased by $2 \cdot d$ .
- You can choose different or same $d$ for different operations. Some heaps may become empty, but they still count as heaps.
What is the maximum number of stones in the smallest heap after the process?
输入格式
Each test contains multiple test cases. The first line contains the number of test cases $t$ ( $1 \le t \le 2\cdot 10^5$ ). Description of the test cases follows.
The first line of each test case contains a single integer $n$ ( $3 \le n \le 2 \cdot 10^5$ ).
The second lines of each test case contains $n$ integers $h_1, h_2, h_3, \ldots, h_n$ ( $1 \le h_i \le 10^9$ ).
It is guaranteed that the sum of $n$ over all test cases does not exceed $2 \cdot 10^5$ .
The first line of each test case contains a single integer $n$ ( $3 \le n \le 2 \cdot 10^5$ ).
The second lines of each test case contains $n$ integers $h_1, h_2, h_3, \ldots, h_n$ ( $1 \le h_i \le 10^9$ ).
It is guaranteed that the sum of $n$ over all test cases does not exceed $2 \cdot 10^5$ .
输出格式
For each test case, print the maximum number of stones that the smallest heap can contain.
输入输出样例
输入 #1
4 4 1 2 10 100 4 100 100 100 1 5 5 1 1 1 8 6 1 2 3 4 5 6
输出 #1
7 1 1 3
In the first test case, the initial heap sizes are $[1, 2, 10, 100]$ . We can move the stones as follows.
- move $3$ stones and $6$ from the $3$ -rd heap to the $2$ -nd and $1$ heap respectively. The heap sizes will be $[7, 5, 1, 100]$ ;
- move $6$ stones and $12$ stones from the last heap to the $3$ -rd and $2$ -nd heap respectively. The heap sizes will be $[7, 17, 7, 82]$ .
In the second test case, the last heap is $1$ , and we can not increase its size.
In the third test case, it is better not to move any stones.
In the last test case, the final achievable configuration of the heaps can be $[3, 5, 3, 4, 3, 3]$ .
- move $3$ stones and $6$ from the $3$ -rd heap to the $2$ -nd and $1$ heap respectively. The heap sizes will be $[7, 5, 1, 100]$ ;
- move $6$ stones and $12$ stones from the last heap to the $3$ -rd and $2$ -nd heap respectively. The heap sizes will be $[7, 17, 7, 82]$ .
In the second test case, the last heap is $1$ , and we can not increase its size.
In the third test case, it is better not to move any stones.
In the last test case, the final achievable configuration of the heaps can be $[3, 5, 3, 4, 3, 3]$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted