codeforce 1077 F1 and F2 - DP
Posted molimao
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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.
The first line of the input contains three integers n,kn,k and xx (1≤k,x≤n≤2001≤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 (1≤ai≤1091≤ai≤109), where aiai is the beauty of the ii-th picture.
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.
5 2 3 5 1 3 10 1
18
6 1 5 10 30 30 70 10 10
-1
4 3 1 1 100 1 1
题目的大意:给定n个长度的序列,选出x个元素。要求:在任意长度为k的区间内至少有1个元素被选中。
主要思路:利用dp的方法解决。
转移方程:dp[i][j]=max(dp[i][j],dp[s][j?1]+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
");
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(dp[