2019-03-03 求最大连续子列和问题

算法介绍

算法一:暴力法

不同的是并没有使用三重循环来进行遍历,因为观察到每一次只需要在a[i]后加一个即可,所以时间复杂度为O(n^2)。

#include <stdio.h>
#include <stdlib.h>

int main()
{
  int k = 0;
  scanf("%d", &k);
  int *a = (int*)malloc(sizeof(int) * k);
  for(int i = 0; i < k; i++){
    scanf("%d", &a[I]);
  }
  int maxsum = 0;
  for(int i = 0; i < k; i++){
    int thissum = 0;
    for(int j = i; j < k; j++){
        thissum += a[j];
        if(thissum > maxsum){
          maxsum = thissum;
        }
    }
  }
  free(a);

  if(maxsum > 0){
    printf("%d", maxsum);
  }
  else{
    printf("0");
  }
  return 0;
}

算法二:在线处理法

在线处理法就是在输入的时候进行条件的判断,有点像对每一个数进行实时处理,在输入完成后结果也就得出,所以时间复杂度最低,为O(N)。具体的判断条件是如果输入的数加上目前的序列和之后导致了当前序列和的减少,则不进行录入,当相加后当前序列和小于0时,则放弃该序列,因为只会对之后的序列和产生副作用。缺点是不是很直观地让人理解。

#include <stdio.h>

int main()
{
  int k = 0, x = 0;
  scanf("%d", &k);
  int  thissum = 0, maxsum = 0;
  for(int i = 0; i < k; i++){
    scanf("%d", &x);
    thissum += x;
    if(thissum > maxsum){
      maxsum = thissum;
    }
    else if(thissum < 0){
      thissum = 0;
    }
  }
  if(maxsum > 0){
    printf("%d", maxsum);
  }
  else{
    printf("0");
  }
  return 0;
}

算法三:分治法

这个方法较为复杂,就我个人而言理解和实现起来都比在线处理法麻烦不少,具体实现思路就是将一个规模比较大的问题通过不断划分划分成一个个小规模的问题,然后再将每个小问题的解集中起来,通过考虑到跨越边界的情况最终得出答案。(真是又复杂又难敲)
贴一个图帮助理解一下:


分治法
#include <stdio.h>

int Max3(int A, int B, int C){
    //返回3个整数中的最大值
    return A > B ? A > C ? A : C : B > C ? B : C;
    //return A > B ? (A > C ? A : (B > C ? B : C)) : B > C ? B : C;
}

int DivideAndConquer( int List[], int left, int right )
{ /* 分治法求List[left]到List[right]的最大子列和 */
    int MaxLeftSum, MaxRightSum; /* 存放左右子问题的解 */
    int MaxLeftBorderSum, MaxRightBorderSum; /*存放跨分界线的结果*/
 
    int LeftBorderSum, RightBorderSum;
    int center, i;
 
    if( left == right )  { /* 递归的终止条件,子列只有1个数字 */
        if( List[left] > 0 )  return List[left];
        else return 0;
    }
 
    /* 下面是"分"的过程 */
    center = ( left + right ) / 2; /* 找到中分点 */
    /* 递归求得两边子列的最大和 */
    MaxLeftSum = DivideAndConquer( List, left, center );
    MaxRightSum = DivideAndConquer( List, center+1, right );
 
    /* 下面求跨分界线的最大子列和 */
    MaxLeftBorderSum = 0; LeftBorderSum = 0;
    for( i=center; i>=left; i-- ) { /* 从中线向左扫描 */
        LeftBorderSum += List[i];
        if( LeftBorderSum > MaxLeftBorderSum )
            MaxLeftBorderSum = LeftBorderSum;
    } /* 左边扫描结束 */
 
    MaxRightBorderSum = 0; RightBorderSum = 0;
    for( i=center+1; i<=right; i++ ) { /* 从中线向右扫描 */
        RightBorderSum += List[i];
        if( RightBorderSum > MaxRightBorderSum )
            MaxRightBorderSum = RightBorderSum;
    } /* 右边扫描结束 */
 
    /* 下面返回"治"的结果 */
    return Max3( MaxLeftSum, MaxRightSum, MaxLeftBorderSum + MaxRightBorderSum );
}
 
int MaxSubseqSum3( int List[], int N )
{ /* 保持与前2种算法相同的函数接口 */
    return DivideAndConquer( List, 0, N-1 );
}

int main()
{
    int k = 0;
    scanf("%d", &k);
    int a[k];
    for(int i = 0; i < k; i++){
        scanf("%d", &a[i]);
    }

    int res = MaxSubseqSum3(a, k);
    printf("%d", res);
    return 0;

}

不过这代码看着工整舒服,递归还是没有明白。

练习:

题目网站:https://pintia.cn/problem-sets/994805342720868352/problems/994805514284679168

题目描述:

1007 Maximum Subsequence Sum (25 point(s))
Given a sequence of K integers { N​1​​ , N​2, ..., N​K}. A continuous subsequence is defined to be { N​I, N​I+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.

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.

Sample Input:

10
-10 1 2 3 4 -5 -23 3 7 -21

Sample Output:

10 1 4

易错点分析

本题唯一的会影响AC的就是对于输出格式的要求, 一开始以为是输出对应的起止数据的下标,后来发现是输出对应的数,所以说样例还是很有误导性的,如果没有完全看清楚题目要求很容易在这卡住,只会得个辛苦分3分,出题的果然都想好了情况。对于输出的要求分为以下几种:
1.存在最大子序列,则输出max_sum以及对应的起止数据(如果最后一位是0的话,也要将0算进最大子序列中);
2.不存在最大子序列,输出0和输入的首尾数据;
3.输入全为负数,输出0和输入的首位数据;
4.输入全为负数和0,负数全部算作0,输出三个0.
这里面最后一个条件比较难以发现,同时也要注意与第三中情况区分开。

思路分析

下午刚学的方法就可以用,所以这道题最起码有三种解法,也就是上面的三种算法。
首先是在线处理法,我实现输出的思路是对最后符合要求的那个i记为z,说明到这结束,如果this_sum > max_sum, 则,z更新,同时子序列长度count++,最终只要将z减去长度再加一即可得到子序列首位的数据。如果是使用暴力法的话,就直接将q = i, z = j,不断更新即可,不再详细说明。实现思路上肯定是前者较为复杂,但是算法效率毋庸置疑是前者。

在线处理法:
#include <stdio.h>

int main()
{
    int k = 10, x = 0;
    scanf("%d", &k);
  //int a[] = {-10, 1, 2, 3, 4, 1, -23, 2, 7, -21};
  int a[k];
    int this_sum = 0, max_sum = 0, q = 0, z = 0, count  = 0, ret = 0, fu = 0, zero = 0;
  for(int i = 0; i < k; i++){
    scanf("%d", &a[i]);
    if(a[i] == 0){
      zero++;
    }
    if(a[i] < 0){
      fu++;
    }
  }
  if(fu+zero == k && zero != 0){
    printf("0 0 0");
  }
  else if(fu == k){
    printf("0 %d %d", a[0], a[k-1]);
  }
  else{
    for(int i = 0; i < k; i++){
      this_sum += a[i];
      count++;
      if(this_sum > max_sum){
        max_sum = this_sum;
        z = i;
        ret = 1;    
      }
      if(ret){
        q = z - count+1;
        }
      if(this_sum < 0){
        this_sum = 0; 
        count = 0;
      }
      ret = 0;
    }
    if(max_sum <= 0){
      printf("0 %d %d", a[0], a[k-1]);
    }
    else{
      printf("%d %d %d", max_sum, a[q], a[z]);
    }
  }
    return 0;
}
暴力法(直接搬运https://blog.csdn.net/wwk0125/article/details/50444529)
#include<iostream>
#include<cstdio>
using namespace std;
#define maxN 10001
#define Inf 0x3f3f3f
 
int main()
{   
    //freopen("in.txt", "r", stdin);
    //freopen("out.txt", "w", stdout);
    int a[maxN];
    int k,sum,max=-Inf;
    int L, R;
    cin >> k;
    for (int i = 0; i < k; i++)
        cin >> a[i];
 
    
    for (int i = 0; i < k; i++)
    {
        sum = 0;
        for (int j = i; j < k; j++)
        {
            sum += a[j];
                if (sum>max)
                {
                    max = sum;
                    L = i;
                    R = j;
                }
        }
    }
    if (max<0)  //全为负数时,按=0处理,输出头尾
        cout << "0" << " " << a[0] << " " << a[k-1] << endl;
    else
    cout << max << " " <<a[L] << " " << a[R] << endl;
    return 0;
}
/*
Sample Input:
10
-10 1 2 3 4 -5 -23 3 7 -21
Sample Output:
10 1 4
*/

原本以为暴力法会有一个点超时,结果没有,早知道就直接暴力了。

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,793评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 87,567评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,342评论 0 338
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,825评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,814评论 5 368
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,680评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,033评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,687评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 42,175评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,668评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,775评论 1 332
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,419评论 4 321
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,020评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,978评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,206评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,092评论 2 351
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,510评论 2 343

推荐阅读更多精彩内容