zoukankan      html  css  js  c++  java
  • PAT 甲级 1007 Maximum Subsequence Sum (25)(25 分)(0不是负数,水题)

    1007 Maximum Subsequence Sum (25)(25 分)

    Given a sequence of K integers { N~1~, N~2~, ..., N~K~ }. 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.

    Sample Input:

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

    Sample Output:

    10 1 4
    

    题目大意:求最大连续子序列和,输出最大的和以及这个子序列的开始值和结束值。如果所有数都小于0,那么认为最大的和为0,并且输出首尾元素。
    分析:sum为要求的最大和,temp为临时最大和,left和right为所求的子序列的下标,tempindex标记left的临时下标。
    temp = temp + v[i],当temp比sum大,就更新sum的值、left和right的值;当temp < 0,那么后面不管来什么值,都应该舍弃temp < 0前面的内容,因为负数对于总和只可能拉低总和,不可能增加总和,还不如舍弃;

    舍弃后,直接令temp = 0,并且同时更新left的临时值tempindex。因为对于所有的值都为负数的情况要输出0,第一个值,最后一个值,所以在输入的时候用flag判断是不是所有的数字都是小于0的,如果是,要在输入的时候特殊处理。~~~~

    #include<iostream>
    #include<cstring>
    #include<string>
    #include<algorithm>
    #include<cmath>
    #include<queue>
    #include<map>
    #include<vector>
    #include<stack>
    #define inf 0x3f3f3f3f
    using namespace std;
    int compare(int x,int y,int z,int a,int b,int c)
    {
        if(x==a)
        {
            if(y==b)
            {
                if(z>=c)
                    return 0;
                else return 1;
            }
            else if(y>b)
                return 0;
            else return 1;
        }
        else if(x>a)
            return 0;
        else 
            return 1;
    }
    
    int main()
    {
        int n;
        while(cin>>n)
        {
            int a[10005];
            bool f=0;
            for(int i=1;i<=n;i++)
            {
                cin>>a[i];
                if(a[i]>=0) f=1;
            }
            if(f==0)
            {
                cout<<0<<" "<<a[1]<<" "<<a[n]<<endl;
            }
            else
            {
                int s=0;
                int st=1;
                int en=1;
                int ma=0;
                int stm,enm;
                for(int i=1;i<=n;i++)
                {
                    s+=a[i];
                    if(s<0)
                    {
                        s=0;
                        st=i+1;
                        en=st;
                    }
                    else
                    {
                        en=i;
                    }
                    if(s>ma)
                    {
                        ma=s;
                        stm=st;
                        enm=en;
                    }
    
                }
                cout<<ma<<" "<<a[stm]<<" "<<a[enm]<<endl;
            }
        }
        return 0;
    }
    
  • 相关阅读:
    python截取视频中的某一段,保存为avi结尾的视频
    文章内容过长,将此内容转为pdf的方式(使用node)
    typescript常见问题集锦
    利用matplotlib中imshow()函数绘图
    如何查看Linux系统安装时间
    php包含那点事情[WOOYUN]
    中间人攻击利用框架bettercap测试
    java 递归方法
    java方法重载
    JVM 之栈结构
  • 原文地址:https://www.cnblogs.com/caiyishuai/p/13270951.html
Copyright © 2011-2022 走看看