题的链接:点击这里!
题目描述
给出一段序列,选出其中连续且非空的一段使得这段和最大。
输入格式
第一行是一个正整数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;
}