codeforce 1077 F1 and F2 - DP

The only difference between easy and hard versions is the constraints.

Vova likes pictures with kittens. The news feed in the social network he uses can be represented as an array of nn consecutive pictures (with kittens, of course). Vova likes all these pictures, but some are more beautiful than the others: the ii-th picture has beauty aiai.

Vova wants to repost exactly xx pictures in such a way that:

  • each segment of the news feed of at least kk consecutive pictures has at least one picture reposted by Vova;
  • the sum of beauty values of reposted pictures is maximum possible.

For example, if k=1k=1 then Vova has to repost all the pictures in the news feed. If k=2k=2 then Vova can skip some pictures, but between every pair of consecutive pictures Vova has to repost at least one of them.

Your task is to calculate the maximum possible sum of values of reposted pictures if Vova follows conditions described above, or say that there is no way to satisfy all conditions.

Input

The first line of the input contains three integers n,kn,k and xx (1k,xn2001≤k,x≤n≤200) — the number of pictures in the news feed, the minimum length of segment with at least one repost in it and the number of pictures Vova is ready to repost.

The second line of the input contains nn integers a1,a2,,ana1,a2,…,an (1ai1091≤ai≤109), where aiai is the beauty of the ii-th picture.

Output

Print -1 if there is no way to repost some pictures to satisfy all the conditions in the problem statement.

Otherwise print one integer — the maximum sum of values of reposted pictures if Vova follows conditions described in the problem statement.

Examples :
input
5 2 3
5 1 3 10 1
output
18
input
6 1 5
10 30 30 70 10 10
output
-1
input
4 3 1
1 100 1 1
output
 100
题目的大意:给定n个长度的序列,选出x个元素。要求:在任意长度为k的区间内至少有1个元素被选中

主要思路:利用dp的方法解决。
转移方程:dp[i][j]=max(dp[i][j],dp[s][j1]+a[i]) s为区间[i−k,i)。
easy version 代码如下:
 
     
#include<iostream>
#include<algorithm> using namespace std; typedef long long ll; //防止int上溢 const int MAXN = 200; ll dp[MAXN + 5][MAXN + 5]; ll store[MAXN + 5]; int n = 0, k = 0, x = 0; int main() {       while (cin >> n >> k >> x) { for (int i = 1; i <= n; ++i) { cin >> store[i]; } if (k*(x+1) <= n) { //查看是否有解 printf("-1\n"); continue; } int mi = 0, l = 0; for (int i = 1; i <= x; ++i) { l = min(n+1, i*k+1); //选择i个最长能到l-1个元素 for (int j = 1; j < l; ++j) { mi = max(j - k, 0); //上一个状态转移的范围 for (int s = mi; s < j; ++s) { dp[i][j] = max

转载于:https://www.cnblogs.com/molimao/p/10011401.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值