P1115 最大子段和

题的链接:点击这里!

题目描述
给出一段序列,选出其中连续且非空的一段使得这段和最大。

输入格式
第一行是一个正整数N,表示了序列的长度。

第二行包含N个绝对值不大于10000的整数Ai,描述了这段序列。

输出格式
一个整数,为最大的子段和是多少。子段的最小长度为11。

输入输出样例
输入 #1复制

7
2 -4 3 -1 2 -4 3
输出 #1复制
4
说明/提示
【样例说明】

2,-4,3,-1,2,-4,3中,最大的子段和为4,该子段为3,-1,2

【数据规模与约定】

对于40%的数据,有N≤2000。

对于100%的数据,有N≤200000。

题解:
  • 第一个数为一个有效序列
  • 如果一个数加上一个有效序列得到的结果比这个数,那么该数也属于这个有效序列。
  • 如果一个数加上一个有效序列得到的结果比这个数,那么这个数单独成为一个新的有效序列
参考代码1.0: 直接将序列切成若干个子序列,直接暴力循环一遍,得到最大值,显然可以;但是全部都会超时,三个循环,O(N^3)。。。。。
#include <queue>
#include <cstdio>
#include <string>
#include <cstring>
#include <iostream>
#include <algorithm>
#define INF 0x3f3f3f3f
#define MAX 5010

using namespace std;

int N, res = -INF;
int S[MAX];

int main()
{
    cin >> N;
    for(int i = 0; i < N; i++) cin >> S[i];
    for(int i = 0; i < N; i++)
    {
        for(int j = i; j < N; j++)
        {
            int ans = 0;
            for(int k = i; k <= j; k++) ans +=S[k];
            res = max(res, ans);
        }
    }
    cout << res << endl;
    return 0;
}

参考代码2.0: b存储当前最大子段和,默认第一个数为有效序列,从第二个数开始,若有效序列加上当前值比当前值大,则有效序列拓展,加入当前值;若有效序列加上当前值比当前值小,则有效序列从当前值重新开始;每次循环都取一次最大值,最后输出;
#include <queue>
#include <cstdio>
#include <string>
#include <cstring>
#include <iostream>
#include <algorithm>
#define INF 0x3f3f3f3f
#define MAX 5010

using namespace std;

int N, a, b, ans, res = -INF;

int main()
{
    cin >> N;
    for(int i = 0; i < N; i++)
    {
        cin >>a;
        if(i == 0) b = a;
        else b = max(a, b + a);
        res = max(res, b);
    }
    cout << res << endl;
    return 0;
}

参考代码3.0: 与2.0类似,累加序列和时,若为负数了,就将其置为0,重新从下一个数开始继续;(若此时已累计为负数,则下一个数加入序列时,一定不会使当前数变大,所以置为0,从下一个数继续累计)
#include <queue>
#include <cstdio>
#include <string>
#include <cstring>
#include <iostream>
#include <algorithm>
#define INF 0x3f3f3f3f
#define MAX 5010

using namespace std;

int N, a, ans, res = -INF;

int main()
{
    cin >> N;
    while(N--)
    {
        cin >> a;
        ans += a;
        if(ans > res) res = ans;
        if(ans < 0) ans = 0;
    }
    cout << res << endl;
    return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值