cf1359D Yet Another Yet Another Task - DP

传送门
给出一个序列,最大化区间和减去该区间的最大值
首先,如果是对于负数的情况,答案肯定是0
那么只需要知道正数的情况即可
枚举最大值,然后进行查找就行了,套最大连续子序列和
如果说存在a[i] > mx,就相当于这一段区间的最大值不是这个,就重新计算区间和

#include <iostream>
#include <cstdio>
#include <cmath>
#include <algorithm>
using namespace std;
const int N = 2e5 + 5;
int a[N];
int main(){
    int n;
    scanf("%d", &n);
    for(int i = 1; i <= n; i++) scanf("%d", &a[i]);
    int ans = 0;
    for(int mx = 0; mx <= 30; mx++) {
        int pre = 0;
        int cur = 0;
        for(int i = 1; i <= n; i++) {
            if(a[i] > mx) {
                pre = 0; cur = 0;
            }else {
                cur = max(pre, 0) + a[i];
                pre = cur;
                ans = max(ans, cur - mx);
            }
        }
    }
    printf("%d\n", ans);
    return 0;
}

垃圾dp选手永远想不到的东西

posted @ 2020-11-06 18:55  Emcikem  阅读(72)  评论(0编辑  收藏  举报