0
点赞
收藏
分享

微信扫一扫

c++PTAA1007(dp累加)

松鼠树屋 2022-01-31 阅读 26

Given a sequence of K integers { N 1 , N 2 , …, N K }. A continuous subsequence is defined to be { N i , N i+1 , …, N j } where 1≤i≤j≤K. The Maximum Subsequence is the continuous subsequence which has the largest sum of its elements. For example, given sequence { -2, 11, -4, 13, -5, -2 }, its maximum subsequence is { 11, -4, 13 } with the largest sum being 20.

Now you are supposed to find the largest sum, together with the first and the last numbers of the maximum subsequence.

Input Specification:
Each input file contains one test case. Each case occupies two lines. The first line contains a positive integer K (≤10000). The second line contains K numbers, separated by a space.

Output Specification:
For each test case, output in one line the largest sum, together with the first and the last numbers of the maximum subsequence. The numbers must be separated by one space, but there must be no extra space at the end of a line. In case that the maximum subsequence is not unique, output the one with the smallest indices i and j (as shown by the sample case). If all the K numbers are negative, then its maximum sum is defined to be 0, and you are supposed to output the first and the last numbers of the whole sequence.

核心思路

利用dp进行更新,dp采用从下标1到下标n结束

测试源码

#include<iostream>
using namespace std;

int main()
{
    int K,a[10001],sum[10001],result=-1,head,tail;
    cin >> K;
    for(int i =1;i<=K;i++) cin >> a[i];
    sum[0]= 0;
    for(int i = 1;i<=K;i++) sum[i] = sum[i-1]+a[i];
    int lowest = 0;
    for(int end = 1;end<=K;end++){
        if(sum[end]-sum[lowest]>result){
            result = sum[end]-sum[lowest];
            head = a[lowest+1];
            tail = a[end];
        }
        if(sum[lowest]>sum[end]) lowest = end;
    }
    if(result<0) cout<< 0 << " " << a[1] << " " << a[K];
    else cout << result << " " << head << " " << tail;
    return 0;
}
举报

相关推荐

C++PTAA1063 Set

C++PTAA1066(AVL基本操作)

C++PTAA1086前中序确定树+后遍

1007:计算(a+b)×c的值

hdu—1007

PAT 乙级 1007

ACM JOJ 1007

递归累加

0 条评论