鱼C论坛

 找回密码
 立即注册
查看: 434|回复: 1

求一个数组子序列的最大值并输出起始位置

[复制链接]
发表于 2024-2-6 21:12:37 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
#include<bits/stdc++.h>
using namespace std;
const int N=1e5+5;
int a[N];
int cnt[N];
int res=-1e9;
void solve()
{
    int n;
    cin>>n;
    cout<<n<<endl;
    for(int i=1;i<=n;i++)cin>>a[i];
    int sum=0;
    int i,j;
    for(i=1,j=2;i<=n,j<=n;i++)
    {
        sum+=a[i];
        while(i<=j)
        {
            if(sum>res)
            {
                res=sum;
                sum+=a[j];
            }
            j++;
        }
        j=i+1;
    }
    cout<<sum<<endl;
    cout<<i<<" "<<j;
    
}
int main()
{
    int t;
    t=1;
    while(t--)
    {
        solve();
    }
}
为什么我的代码不对,并给出正确代码
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2024-2-6 21:12:56 | 显示全部楼层
以下是一个示例代码,用于求解数组子序列的最大值以及输出起始位置:

#include <iostream>
using namespace std;

const int N = 1e5 + 5;

int main()
{
    int n;
    cin >> n;
   
    int a[N];
    for (int i = 0; i < n; i++) {
        cin >> a[i];
    }
   
    int start = 0;
    int maxSum = a[0];
    int currentStart = 0;
    int currentSum = a[0];
   
    for (int i = 1; i < n; i++) {
        if (currentSum < 0) { // 如果当前子序列的和小于0,则将起始位置和当前和重新设置
            currentStart = i;
            currentSum = a[i];
        } else { // 如果当前子序列的和大于等于0,则将当前和累加
            currentSum += a[i];
        }
        
        if (currentSum >= maxSum) { // 如果当前子序列的和大于等于最大和,则更新最大和和起始位置
            maxSum = currentSum;
            start = currentStart;
        }
    }
   
    cout << "最大值为:" << maxSum << endl;
    cout << "起始位置为:" << start << endl;
   
    return 0;
}

在这段代码中,我们使用start变量记录最大子序列的起始位置,maxSum变量记录最大子序列的和。currentStart变量记录当前子序列的起始位置,currentSum变量记录当前子序列的和。

我们遍历数组,如果当前子序列的和小于0,则将起始位置和当前和重新设置;如果当前子序列的和大于等于0,则将当前和累加。

在每次更新最大和时,同时也更新起始位置。

最后输出最大值和起始位置即可。

以上回复来自 FishC AI 小助理,如未能正确解答您的问题,请继续追问。
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-11-21 23:58

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表