A15237 | Helping the Nature
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Little Leon lives in the forest. He has recently noticed that some trees near his favourite path are withering, while the other ones are overhydrated so he decided to learn how to control the level of the soil moisture to save the trees.
There are $n$ trees growing near the path, the current levels of moisture of each tree are denoted by the array $a_1, a_2, \dots, a_n$ . Leon has learned three abilities which will help him to dry and water the soil.
- Choose a position $i$ and decrease the level of moisture of the trees $1, 2, \dots, i$ by $1$ .
- Choose a position $i$ and decrease the level of moisture of the trees $i, i + 1, \dots, n$ by $1$ .
- Increase the level of moisture of all trees by $1$ .
Leon wants to know the minimum number of actions he needs to perform to make the moisture of each tree equal to $0$ .
There are $n$ trees growing near the path, the current levels of moisture of each tree are denoted by the array $a_1, a_2, \dots, a_n$ . Leon has learned three abilities which will help him to dry and water the soil.
- Choose a position $i$ and decrease the level of moisture of the trees $1, 2, \dots, i$ by $1$ .
- Choose a position $i$ and decrease the level of moisture of the trees $i, i + 1, \dots, n$ by $1$ .
- Increase the level of moisture of all trees by $1$ .
Leon wants to know the minimum number of actions he needs to perform to make the moisture of each tree equal to $0$ .
输入格式
The first line contains a single integer $t$ ( $1 \le t \le 2 \cdot 10^4$ ) — the number of test cases. The description of $t$ test cases follows.
The first line of each test case contains a single integer $n$ ( $1 \leq n \leq 200\,000$ ).
The second line of each test case contains $n$ integers $a_1, a_2, \ldots, a_n$ ( $-10^9 \leq a_i \leq 10^9$ ) — the initial levels of trees moisture.
It is guaranteed that the sum of $n$ over all test cases doesn't exceed $200\,000$ .
The first line of each test case contains a single integer $n$ ( $1 \leq n \leq 200\,000$ ).
The second line of each test case contains $n$ integers $a_1, a_2, \ldots, a_n$ ( $-10^9 \leq a_i \leq 10^9$ ) — the initial levels of trees moisture.
It is guaranteed that the sum of $n$ over all test cases doesn't exceed $200\,000$ .
输出格式
For each test case output a single integer — the minimum number of actions. It can be shown that the answer exists.
输入输出样例
输入 #1
4 3 -2 -2 -2 3 10 4 7 4 4 -4 4 -4 5 1 -2 3 -4 5
输出 #1
2 13 36 33
In the first test case it's enough to apply the operation of adding $1$ to the whole array $2$ times.
In the second test case you can apply the operation of decreasing $4$ times on the prefix of length $3$ and get an array $6, 0, 3$ .
After that apply the operation of decreasing $6$ times on the prefix of length $1$ and $3$ times on the suffix of length $1$ . In total, the number of actions will be $4 + 6 + 3 = 13$ . It can be shown that it's impossible to perform less actions to get the required array, so the answer is $13$ .
In the second test case you can apply the operation of decreasing $4$ times on the prefix of length $3$ and get an array $6, 0, 3$ .
After that apply the operation of decreasing $6$ times on the prefix of length $1$ and $3$ times on the suffix of length $1$ . In total, the number of actions will be $4 + 6 + 3 = 13$ . It can be shown that it's impossible to perform less actions to get the required array, so the answer is $13$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted