博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[CodeForces940E]Cashback(set+DP)
阅读量:5926 次
发布时间:2019-06-19

本文共 1251 字,大约阅读时间需要 4 分钟。

Description

Since you are the best Wraith King, Nizhniy Magazin «Mir» at the centre of Vinnytsia is offering you a discount.

You are given an array a of length n and an integer c.

The value of some array b of length k is the sum of its elements except for the 9f62d3be7333102b6a6fc4af62b05cfa620cccee.png smallest. For example, the value of the array [3, 1, 6, 5, 2] with c = 2 is 3 + 6 + 5 = 14.

Among all possible partitions of a into contiguous subarrays output the smallest possible sum of the values of these subarrays.

Solution

这里有一个贪心的思想,就是只需要划分长度为1或者长度为c的区间,其他的不会比这两种更优

首先裸的DP,\(dp[i]=min\{dp[j]+Cost_{j+1,i}\}\)

然后只要对长度为c的区间进行更新,可以用multiset进行存储数据

(STL中的multiset与set的区别在于可以存储相同的元素)

具体见代码

Code

#include 
#include
#include
#define ll long long#define N 100010using namespace std;int n,c;ll A[N],dp[N],sum;multiset
q;//默认升序排列int main(){ scanf("%d%d",&n,&c); for(int i=1;i<=n;i++)scanf("%I64d",&A[i]); for(int i=1;i<=n;i++){ sum+=A[i]; dp[i]=dp[i-1]+A[i]; q.insert(A[i]); if(i>c){q.erase(q.find(A[i-c]));sum-=A[i-c];}//删除最小的元素 if(i>=c){dp[i]=min(dp[i],dp[i-c]+sum-*q.begin());}//转移 } printf("%I64d\n",dp[n]); return 0;}

转载于:https://www.cnblogs.com/void-f/p/8476126.html

你可能感兴趣的文章
Android Notification 的使用
查看>>
自动编号维护SNRO
查看>>
Oracle 临时事务表 全局临时表_global temporary table
查看>>
【目录】数据挖掘与机器学习相关算法文章总目录
查看>>
hive分区导致FAILED: Hive Internal Error: java.lang.NullPointerException(null)
查看>>
通过LINQ表达式树动态构建查询条件
查看>>
自动工作负载库(Automatic Workload Repository,AWR)
查看>>
grails的controller和action那点事---远程调试groovy代码
查看>>
mvc 简单笔记
查看>>
StaggeredGridView+universal-image-loader载入网路图片实现瀑布流
查看>>
linux逻辑卷管理
查看>>
iOS截取视频缩略图的两种方法
查看>>
Git 查看某个版本修改了哪些文件
查看>>
Mybatis resultMap空值映射问题解决
查看>>
linux svn客户端 常用命令
查看>>
工作中遇到的几个函数....
查看>>
CALayer1-简介
查看>>
Websocket协议的学习、调研和实现
查看>>
C++设计模式——建造者模式
查看>>
2016全国研究生数学建模A题多无人机协同任务规划——基于分布式协同多旅行商MTSP遗传算法...
查看>>