前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >CF-1197C-C. Array Splitting

CF-1197C-C. Array Splitting

作者头像
某些人
发布2020-04-09 12:02:07
3900
发布2020-04-09 12:02:07
举报

CF-1197C-C. Array Splitting

C. Array Splitting time limit per test2 seconds memory limit per test256 megabytes inputstandard input outputstandard output

      You are given a sorted array a1,a2,…,an (for each index i>1 condition ai≥ai−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 ∑i=1k(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.

Input The first line contains two integers n and k (1≤k≤n≤3⋅105). The second line contains n integers a1,a2,…,an (1≤ai≤109, ai≥ai−1).

Output Print the minimum cost you can obtain by dividing the array a into k nonempty consecutive subarrays.

Examples input 6 3 4 8 15 16 23 42 output 12 input 4 4 1 3 3 7 output 0 input 8 1 1 1 2 3 5 8 13 21 output 20 Note In the first test we can divide array a in the following way: [4,8,15,16],[23],[42]. 题目传送门   刚开始这一题我一时不会写有点思路但是就是写不出来好难受呀!后来还是问我师傅了! 结果发现还是一个贪心,因为他需要最小值所以每次先把距离最大的删除那么结果不就是最小了,先依次作差,然后sort排序从大到小依次减去k-1个数就行!剩下的就是答案了

#include<iostream>
#include<algorithm>
using namespace std;

int a[300300];
int b[300300];
int main()
{
    ios::sync_with_stdio(false);
    int n,m;
    while(cin>>n>>m)
    {
        cin>>a[0];
        int sum=0;
        for(int i=1;i<n;i++)
        {
            cin>>a[i];
            b[i-1]=a[i]-a[i-1];//用数组B存差值; 
            sum+=b[i-1];       //先求差值之和最后再减; 
        }
        sort(b,b+n-1,greater<int>());//从大到小排序 
        for(int i=0;i<m-1;i++)//从大到小开始删除 
        {
            sum-=b[i];
        }
        cout<<sum<<endl; //输出剩余的结果 
    }
    return 0;
}
本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
原始发表:2019-07-23,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • CF-1197C-C. Array Splitting
相关产品与服务
对象存储
对象存储(Cloud Object Storage,COS)是由腾讯云推出的无目录层次结构、无数据格式限制,可容纳海量数据且支持 HTTP/HTTPS 协议访问的分布式存储服务。腾讯云 COS 的存储桶空间无容量上限,无需分区管理,适用于 CDN 数据分发、数据万象处理或大数据计算与分析的数据湖等多种场景。
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档