最大序列和

题目描述
给出一个整数序列S,其中有N个数,定义其中一个非空连续子序列T中所有数的和为T的“序列和”。 对于S的所有非空连续子序列T,求最大的序列和。 变量条件:N为正整数,N≤1000000,结果序列和在范围(-263,263-1)以内。

输入描述:
第一行为一个正整数N,第二行为N个整数,表示序列中的数。

输出描述:
输入可能包括多组数据,对于每一组输入数据,
仅输出一个数,表示最大序列和。

示例1
输入
5
1 5 -3 2 4

6
1 -2 3 4 -10 6

4
-3 -1 -2 -5
输出
9
7
-1

题目解析:每插入一个数,判断对前n个数的和的影响,得到一个比较大的数,然后再判断。

代码:

#include<iostream>
#include<stdio.h>
#include<math.h>
#include<string.h>
#include<algorithm>
#include<vector>
#include<map>

using namespace std;

int main(){
	int N,i;
    while(cin >> N)
    {
        long long sum=0 , Max=-999999999 , x;
        for(i = 0; i < N; i++)
        {
            cin >> x;
            sum = max (sum + x , x);  // 计算新添加的数,对和的影响 
                                      // 如果sum是正数,+正数,新总和最大,sum是负数,+正数,新数最大 
            Max = max (Max , sum );   // Max记录的是上次最大数,比较新的最大
            
        }
        cout << Max << endl;
    }
}

/* 暴力破解,通过率91% 
#include<stdio.h>
#include<math.h>
#include<algorithm>
#include<string.h>
#include<iostream>
#include<fstream>
#include<iomanip>
#include<vector>
#include<regex>
#include<map>
#include<set>
#include<stack>
#include<queue>
using namespace std;

int main()
{
	int n , number;
	vector<int> vc,rst;
	while(cin >> n){
		for(int i = 0 ; i < n ; i++){
			cin >> number;
			vc.push_back(number);
			rst.push_back(number);
		} 
		for(int i = 0 ; i < n ; i++){
			int sum = vc[i];
			for(int j = i+1 ; j < n ; j++){
				sum += vc[j];
				rst.push_back(sum);
			}
		}
		sort(rst.begin() , rst.end());
		cout << rst[rst.size()-1] << endl;
		vc.clear();
		rst.clear();
	}
    return 0;
}
*/
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值