「已注销」 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 关于#matlab#的问题:在模糊控制器中选出线路信息,在simulink中根据线路信息生成速度时间目标曲线(初速度为20m/s,15秒后减为0的速度时间图像)我想问线路信息是什么
  • ¥15 banner广告展示设置多少时间不怎么会消耗用户价值
  • ¥16 mybatis的代理对象无法通过@Autowired装填
  • ¥15 可见光定位matlab仿真
  • ¥15 arduino 四自由度机械臂
  • ¥15 wordpress 产品图片 GIF 没法显示
  • ¥15 求三国群英传pl国战时间的修改方法
  • ¥15 matlab代码代写,需写出详细代码,代价私
  • ¥15 ROS系统搭建请教(跨境电商用途)
  • ¥15 AIC3204的示例代码有吗,想用AIC3204测量血氧,找不到相关的代码。