Given a sequence of K integers { N1, N2, ..., NK }. A continuous subsequence is defined to be { Ni, Ni+1, ..., Nj } 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.node
Now you are supposed to find the largest sum, together with the first and the last numbers of the maximum subsequence.ide
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. flex
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. spa
10 -10 1 2 3 4 -5 -23 3 7 -21
10 1 4
求最大的連續子序列的和,並輸出子序列的首尾元素,就是沒注意這點,一直輸出首尾索引號,一直WA
思路有兩種:
1)子序列的和sum = sum[j] - sum[i] (j >= i),因此只需在求每一個sum[j]的時候,找到j前面最小的那個sum[i],便可,這裏的最小的sum[i]應該與求sum[j]的時候同時維護,不然就是暴力破解。
#include<stdio.h> #include<string.h> #include<stdlib.h> #define MAXN 10005 struct node{ int num; int l; int r; int l_sum; } seq[MAXN]; int sum[MAXN]; int main() { int n; int flag = 0; int min; int index; min = 0; index = -1; scanf("%d", &n); for (int i = 0; i < n; i++){ scanf("%d", &seq[i].num); if(seq[i].num >= 0) flag = 1; sum[i] = sum[i - 1] + seq[i].num; seq[i].l_sum = sum[i] - min; seq[i].l = index + 1; seq[i].r = i; if(sum[i] < min){ min = sum[i]; index = i; } } if(!flag){ printf("0 %d %d\n", seq[0].num, seq[n - 1].num); } else{ int max; int l, r; max = -1; for (int i = 0; i < n; i++){ if(max < seq[i].l_sum){ max = seq[i].l_sum; l = seq[i].l; r = seq[i].r; } } printf("%d %d %d\n", max, seq[l].num, seq[r].num); } system("pause"); return 0; }
2)見https://blog.csdn.net/liuchuo/article/details/52144554.net