53. Maximum Subarray

https://leetcode.com/problems/maximum-subarray/

給定一個數(shù)組,找出加和最大的子數(shù)組

this problem was discussed by Jon Bentley (Sep. 1984 Vol. 27 No. 9 Communications of the ACM P885)

the paragraph below was copied from his paper (with a little modifications)

algorithm that operates on arrays: it starts at the left end (element A[1]) and scans through to the right end (element A[n]), keeping track of the maximum sum subvector seen so far. The maximum is initially A[0]. Suppose we've solved the problem for A[1 .. i - 1]; how can we extend that to A[1 .. i]? The maximum
sum in the first I elements is either the maximum sum in the first i - 1 elements (which we'll call MaxSoFar), or it is that of a subvector that ends in position i (which we'll call MaxEndingHere).

MaxEndingHere is either A[i] plus the previous MaxEndingHere, or just A[i], whichever is larger.

class Solution {
public:
    int maxSubArray(vector<int>& nums) {
        int maxhere = nums[0];
        int maxsofar = nums[0];
        
        for(int i=1; i<nums.size(); ++i)
        {
            maxhere = (maxhere + nums[i]) > nums[i] ? (maxhere + nums[i]) : nums[i]; // 可以優(yōu)化減少一次加法
            maxsofar = maxsofar > maxhere ? maxsofar:maxhere;
        }
        return maxsofar;
    }
};

結(jié)果:
Runtime: 8 ms
Memory Usage: 7.2 MB


class Solution {
public:
    int maxSubArray(vector<int>& nums) {
        int maxhere = nums[0];
        int maxsofar = nums[0];
        
        for(int i=1; i<nums.size(); ++i)
        {
            maxhere = maxhere > 0 ? (maxhere + nums[i]) : nums[i];
            maxsofar = maxsofar > maxhere ? maxsofar:maxhere;
        }
        return maxsofar;
    }
};

結(jié)果
Runtime: 4 ms, faster than 98.08% of C++ online submissions for Maximum Subarray.
Memory Usage: 7 MB, less than 100.00% of C++ online submissions for Maximum Subarray.

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
【社區(qū)內(nèi)容提示】社區(qū)部分內(nèi)容疑似由AI輔助生成,瀏覽時請結(jié)合常識與多方信息審慎甄別。
平臺聲明:文章內(nèi)容(如有圖片或視頻亦包括在內(nèi))由作者上傳并發(fā)布,文章內(nèi)容僅代表作者本人觀點,簡書系信息發(fā)布平臺,僅提供信息存儲服務(wù)。

相關(guān)閱讀更多精彩內(nèi)容

友情鏈接更多精彩內(nèi)容