A13895 | Suffix Operations
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Gildong has an interesting machine that has an array $a$ with $n$ integers. The machine supports two kinds of operations:
1. Increase all elements of a suffix of the array by $1$ .
2. Decrease all elements of a suffix of the array by $1$ .
A suffix is a subsegment (contiguous elements) of the array that contains $a_n$ . In other words, for all $i$ where $a_i$ is included in the subsegment, all $a_j$ 's where $i \lt j \le n$ must also be included in the subsegment.
Gildong wants to make all elements of $a$ equal — he will always do so using the minimum number of operations necessary. To make his life even easier, before Gildong starts using the machine, you have the option of changing one of the integers in the array to any other integer. You are allowed to leave the array unchanged. You want to minimize the number of operations Gildong performs. With your help, what is the minimum number of operations Gildong will perform?
Note that even if you change one of the integers in the array, you should not count that as one of the operations because Gildong did not perform it.
1. Increase all elements of a suffix of the array by $1$ .
2. Decrease all elements of a suffix of the array by $1$ .
A suffix is a subsegment (contiguous elements) of the array that contains $a_n$ . In other words, for all $i$ where $a_i$ is included in the subsegment, all $a_j$ 's where $i \lt j \le n$ must also be included in the subsegment.
Gildong wants to make all elements of $a$ equal — he will always do so using the minimum number of operations necessary. To make his life even easier, before Gildong starts using the machine, you have the option of changing one of the integers in the array to any other integer. You are allowed to leave the array unchanged. You want to minimize the number of operations Gildong performs. With your help, what is the minimum number of operations Gildong will perform?
Note that even if you change one of the integers in the array, you should not count that as one of the operations because Gildong did not perform it.
输入格式
Each test contains one or more test cases. The first line contains the number of test cases $t$ ( $1 \le t \le 1000$ ).
Each test case contains two lines. The first line of each test case consists of an integer $n$ ( $2 \le n \le 2 \cdot 10^5$ ) — the number of elements of the array $a$ .
The second line of each test case contains $n$ integers. The $i$ -th integer is $a_i$ ( $-5 \cdot 10^8 \le a_i \le 5 \cdot 10^8$ ).
It is guaranteed that the sum of $n$ in all test cases does not exceed $2 \cdot 10^5$ .
Each test case contains two lines. The first line of each test case consists of an integer $n$ ( $2 \le n \le 2 \cdot 10^5$ ) — the number of elements of the array $a$ .
The second line of each test case contains $n$ integers. The $i$ -th integer is $a_i$ ( $-5 \cdot 10^8 \le a_i \le 5 \cdot 10^8$ ).
It is guaranteed that the sum of $n$ in all test cases does not exceed $2 \cdot 10^5$ .
输出格式
For each test case, print one integer — the minimum number of operations Gildong has to perform in order to make all elements of the array equal.
输入输出样例
输入 #1
7 2 1 1 3 -1 0 2 4 99 96 97 95 4 -3 -5 -2 1 6 1 4 3 2 4 1 5 5 0 0 0 5 9 -367741579 319422997 -415264583 -125558838 -300860379 420848004 294512916 -383235489 425814447
输出 #1
0 1 3 4 6 5 2847372102
In the first case, all elements of the array are already equal. Therefore, we do not change any integer and Gildong will perform zero operations.
In the second case, we can set $a_3$ to be $0$ , so that the array becomes $[-1,0,0]$ . Now Gildong can use the $2$ -nd operation once on the suffix starting at $a_2$ , which means $a_2$ and $a_3$ are decreased by $1$ , making all elements of the array $-1$ .
In the third case, we can set $a_1$ to $96$ , so that the array becomes $[96,96,97,95]$ . Now Gildong needs to:
- Use the $2$ -nd operation on the suffix starting at $a_3$ once, making the array $[96,96,96,94]$ .
- Use the $1$ -st operation on the suffix starting at $a_4$ $2$ times, making the array $[96,96,96,96]$ .
In the fourth case, we can change the array into $[-3,-3,-2,1]$ . Now Gildong needs to:
- Use the $2$ -nd operation on the suffix starting at $a_4$ $3$ times, making the array $[-3,-3,-2,-2]$ .
- Use the $2$ -nd operation on the suffix starting at $a_3$ once, making the array $[-3,-3,-3,-3]$ .
In the second case, we can set $a_3$ to be $0$ , so that the array becomes $[-1,0,0]$ . Now Gildong can use the $2$ -nd operation once on the suffix starting at $a_2$ , which means $a_2$ and $a_3$ are decreased by $1$ , making all elements of the array $-1$ .
In the third case, we can set $a_1$ to $96$ , so that the array becomes $[96,96,97,95]$ . Now Gildong needs to:
- Use the $2$ -nd operation on the suffix starting at $a_3$ once, making the array $[96,96,96,94]$ .
- Use the $1$ -st operation on the suffix starting at $a_4$ $2$ times, making the array $[96,96,96,96]$ .
In the fourth case, we can change the array into $[-3,-3,-2,1]$ . Now Gildong needs to:
- Use the $2$ -nd operation on the suffix starting at $a_4$ $3$ times, making the array $[-3,-3,-2,-2]$ .
- Use the $2$ -nd operation on the suffix starting at $a_3$ once, making the array $[-3,-3,-3,-3]$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted