「已注销」 2022-09-13 14:19 采纳率: 90.2%
浏览 23
已结题

求最大子序列和的问题

问题遇到的现象和发生背景 2004浙大考研复试题,求最大子序列和,若相等则输出更前面的,若为负数则令其为0

原题:
Given a sequence of K integers { N1,N2,……,NK
}. 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.

问题相关代码,请勿粘贴截图
#include<stdio.h>
int main()
{
    int n,i,sum=0,a[100000],max=0,flag,start,end;
    scanf("%d",&n);
    for(i=0;i<n;i++){scanf("%d",&a[i]);
         if(sum==0&&a[i]>0)flag=i;
         sum=sum+a[i];
         if(sum>max){
             start=flag;
             max=sum;
             end=i;
         }
         if(sum<0)sum=0;
         if(max==0)start=end=0;
}
    printf("%d %d %d",max,a[start],a[end]);
    return 0;
}

运行结果及报错内容 部分正确,在“全是负数”“负数和0”“最大和前面有一段是0”这三项一直都挂了
我的解答思路和尝试过的方法 对于全是负数,在循环最后加了if{max==0}语句输出特殊情况;对于最大和前面有一段是0,在循环前面只有sum初始或被更新后且元素大于0才记录
  • 写回答

1条回答 默认 最新

  • CSDN-Ada助手 CSDN-AI 官方账号 2022-09-13 16:00
    关注
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

问题事件

  • 系统已结题 4月12日
  • 已采纳回答 4月4日
  • 创建了问题 9月13日

悬赏问题

  • ¥15 随身WiFi网络灯亮但是没有网络,如何解决?
  • ¥15 gdf格式的脑电数据如何处理matlab
  • ¥20 重新写的代码替换了之后运行hbuliderx就这样了
  • ¥100 监控抖音用户作品更新可以微信公众号提醒
  • ¥15 UE5 如何可以不渲染HDRIBackdrop背景
  • ¥70 2048小游戏毕设项目
  • ¥20 mysql架构,按照姓名分表
  • ¥15 MATLAB实现区间[a,b]上的Gauss-Legendre积分
  • ¥15 delphi webbrowser组件网页下拉菜单自动选择问题
  • ¥15 linux驱动,linux应用,多线程