A12862 | Array Splitting
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
You are given a sorted array $a_1, a_2, \dots, a_n$ (for each index $i > 1$ condition $a_i \ge a_{i-1}$ holds) and an integer $k$ .
You are asked to divide this array into $k$ non-empty consecutive subarrays. Every element in the array should be included in exactly one subarray.
Let $max(i)$ be equal to the maximum in the $i$ -th subarray, and $min(i)$ be equal to the minimum in the $i$ -th subarray. The cost of division is equal to $\sum\limits_{i=1}^{k} (max(i) - min(i))$ . For example, if $a = [2, 4, 5, 5, 8, 11, 19]$ and we divide it into $3$ subarrays in the following way: $[2, 4], [5, 5], [8, 11, 19]$ , then the cost of division is equal to $(4 - 2) + (5 - 5) + (19 - 8) = 13$ .
Calculate the minimum cost you can obtain by dividing the array $a$ into $k$ non-empty consecutive subarrays.
You are asked to divide this array into $k$ non-empty consecutive subarrays. Every element in the array should be included in exactly one subarray.
Let $max(i)$ be equal to the maximum in the $i$ -th subarray, and $min(i)$ be equal to the minimum in the $i$ -th subarray. The cost of division is equal to $\sum\limits_{i=1}^{k} (max(i) - min(i))$ . For example, if $a = [2, 4, 5, 5, 8, 11, 19]$ and we divide it into $3$ subarrays in the following way: $[2, 4], [5, 5], [8, 11, 19]$ , then the cost of division is equal to $(4 - 2) + (5 - 5) + (19 - 8) = 13$ .
Calculate the minimum cost you can obtain by dividing the array $a$ into $k$ non-empty consecutive subarrays.
输入格式
The first line contains two integers $n$ and $k$ ( $1 \le k \le n \le 3 \cdot 10^5$ ).
The second line contains $n$ integers $a_1, a_2, \dots, a_n$ ( $ 1 \le a_i \le 10^9$ , $a_i \ge a_{i-1}$ ).
The second line contains $n$ integers $a_1, a_2, \dots, a_n$ ( $ 1 \le a_i \le 10^9$ , $a_i \ge a_{i-1}$ ).
输出格式
Print the minimum cost you can obtain by dividing the array $a$ into $k$ nonempty consecutive subarrays.
输入输出样例
输入 #1
6 3 4 8 15 16 23 42
输出 #1
12
输入 #2
4 4 1 3 3 7
输出 #2
0
输入 #3
8 1 1 1 2 3 5 8 13 21
输出 #3
20
In the first test we can divide array $a$ in the following way: $[4, 8, 15, 16], [23], [42]$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted