杭电OJ 1003

Posted kakagoult

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了杭电OJ 1003相关的知识,希望对你有一定的参考价值。

#include <iostream>
#include <string>
using namespace std;
#define FOR(i,a,b) for(int i=(a);i<(b);++i)
#define SWAP(a,b) auto c=a;a=b;b=c;


int main()
{
    int n, num_amount, num, max, start, end, temp_start, accu;
    cin >> n;
    FOR(i, 1, n+1){
        cin >> num_amount;
        max = -1001;
        temp_start = accu = 0;

        FOR(temp_end, 0, num_amount){
            cin >> num;
            accu += num;
            if (accu > max){
                start = temp_start;
                end = temp_end;
                max = accu;
            }
            if(accu < 0){
                accu = 0;
                temp_start = temp_end + 1;
            }
        }
        cout << "Case " << i << ":" << endl;
        cout << max << " " << start + 1 << " " << end + 1 << endl;
        if(i != n) cout << endl;
    }
    return 0;
}

经典的最大字串和问题,没什么好说的,当尝试中的字串和小于 0 时就放弃这个字串,改为尝试以下一个标号开始的字串。

以上是关于杭电OJ 1003的主要内容,如果未能解决你的问题,请参考以下文章

如何有效使用 杭电 hdu oj

杭电1003_Max Sum

杭电女生赛1001 1002 1003 1005 1008 hdu6023 6024 6025 6027 6030

杭电acm 1003

杭电OJ1002大数据相加

杭电oj2037——今年暑假不AC(java实现)