码迷,mamicode.com
首页 > 其他好文 > 详细

Educational Codeforces Round 88 (Rated for Div. 2) D. Yet Another Yet Another Task

时间:2020-05-29 19:31:35      阅读:164      评论:0      收藏:0      [点我收藏+]

标签:div   nbsp   最大值   its   clu   ORC   连续   题解   codeforce   

题目链接:https://codeforces.com/contest/1359/problem/D

题解

枚举所有可能的情况,其中一定有一个是正确答案。

即每次枚举去掉的最大值,取最大连续子序列的和。

代码

#include <bits/stdc++.h>
using namespace std;
int main() {
    int n; cin >> n;
    int a[n] = {};
    for (int i = 0; i < n; i++) 
        cin >> a[i];
    int ans = 0;
    for (int maxn = 30; maxn >= -30; maxn--) {
        int sum = 0;
        for (int i = 0; i < n; i++) {
            sum = max(0, sum) + a[i];
            ans = max(ans, sum - maxn);
        }
    }
    cout << ans << "\n";
}

 

Educational Codeforces Round 88 (Rated for Div. 2) D. Yet Another Yet Another Task

标签:div   nbsp   最大值   its   clu   ORC   连续   题解   codeforce   

原文地址:https://www.cnblogs.com/Kanoon/p/12989145.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!