53 Maximum Subarray


title: Maximum Subarray
tags:
- maximum-subarray
- No.53
- simple
- divide-conquer
- mathematical-analysis


Problem

Given an integer array nums, find the contiguous subarray (containing at least one number) which has the largest sum and return its sum.

Example:

Input: [-2,1,-3,4,-1,2,1,-5,4],
Output: 6
Explanation: [4,-1,2,1] has the largest sum = 6.

Follow up:

If you have figured out the O(n) solution, try coding another solution using the divide and conquer approach, which is more subtle.

Corner Cases

  • empty array
  • all negative
  • all positive

Solutions

Divide and Conquer

For input array nums[], we can compute the sum array sums[] s.t.

sums[0] = 0;
sums[1] = 0 + nums[0];
sums[2] = 0 + nums[0] + nums[1];
sums[3] = 0 + nums[0] + nums[1] + nums[2];

and

nums[0] = sums[1] - sums[0];
nums[1] = sums[2] - sums[1];
nums[2] = sums[3] - sums[2];

Then any sum of continuous elements nums[i] + ... + nums[j] can be represented by sums[j+1] - sums[i]. Then, we can do divide and conquer more quickly.

Note that we must make sure that i <= j.

For any range [i : j] for sums, we divide it into two halves: [i : k] and [k+1 : j]. Then we have:

divideConquer(i, j) = max{ 
    divideConquer(i, k),
    divideConquer(k+1, j),
    max{sums[jj] - sums[ii]} // ii \in [i : j] && jj \in [k+1 : j]
}

It's obvious that:

max{sums[jj] - sums[ii]} = max{sums[k+1 : j]} - min{sums[i : j]}

This conclusion can be computed within O(n) time. Thus we have T(n) = 2 \times T(\frac{n}{2}) + O(n). The running is T(n) = O(n \lg(n)):

class Solution {
    private int[] sums;

    public int maxSubArray(int[] nums) {
        if (nums.length == 0) {return -2147483648;}

        sums = new int[1 + nums.length];
        for (int i=0, s=0; i<nums.length; i++) {
            s         = s + nums[i];
            sums[1+i] = s;
        }

        return divideConquer(0, sums.length-1);
    }

    public int divideConquer(int i, int j) {
        if ((i==j) || (i==0 && j==1)) {
            return sums[j]-sums[j-1];
        }

        int k = (i + j)/2;
        int a = divideConquer(i, k);
        int b = divideConquer(k+1, j);

        int cmax = -2147483648;
        int cmin = 2147483647;
        for (int jj=k+1; jj<=j; jj++) {
            cmax = (sums[jj] < cmax) ? cmax : sums[jj];
        }
        for (int ii=i; ii<=k; ii++) {
            cmin = (cmin < sums[ii]) ? cmin : sums[ii];
        }
        int c = cmax - cmin;

        return (((a > b) ? a : b) > c) ? ((a > b) ? a : b) : c;
    }
}

Zero Points

For continuous variable t and continous integralable function f(t) and the definite integral \int_{y}^{x} f(t)dt = F(x) - F(y), we have:

\frac{\partial F(x) - F(y)}{\partial x} = \frac{dF}{dx}(x) = f(x) = 0

\frac{\partial F(x) - F(y)}{\partial y} = \frac{dF}{dy}(y) = f(y) = 0

This is the relationship of the Force and Work. That is to say: we sometimes do positive work, sometimes do negative work, and want to figure out the largest Potential difference. Since the extremums occur at zeros of derivative function, we check nums for changing signs.

[-2, 1,-3, 4,-1, 2, 1,-5, 4]
 **0** **2** **4** **6**
    **1** **3** **5** **7**

We have 8 pairs of zeros to check here above. This method is bad when zeros are close to each other, but relative good when they are sparse.

?著作權歸作者所有,轉載或內容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市伍俘,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌疏叨,老刑警劉巖,帶你破解...
    沈念sama閱讀 212,884評論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件赴蝇,死亡現(xiàn)場離奇詭異探膊,居然都是意外死亡颗圣,警方通過查閱死者的電腦和手機,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,755評論 3 385
  • 文/潘曉璐 我一進店門篮撑,熙熙樓的掌柜王于貴愁眉苦臉地迎上來减细,“玉大人,你說我怎么就攤上這事赢笨∥打颍” “怎么了驮吱?”我有些...
    開封第一講書人閱讀 158,369評論 0 348
  • 文/不壞的土叔 我叫張陵,是天一觀的道長萧吠。 經(jīng)常有香客問我左冬,道長,這世上最難降的妖魔是什么纸型? 我笑而不...
    開封第一講書人閱讀 56,799評論 1 285
  • 正文 為了忘掉前任又碌,我火速辦了婚禮,結果婚禮上绊袋,老公的妹妹穿的比我還像新娘毕匀。我一直安慰自己,他們只是感情好癌别,可當我...
    茶點故事閱讀 65,910評論 6 386
  • 文/花漫 我一把揭開白布皂岔。 她就那樣靜靜地躺著,像睡著了一般展姐。 火紅的嫁衣襯著肌膚如雪躁垛。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 50,096評論 1 291
  • 那天圾笨,我揣著相機與錄音教馆,去河邊找鬼。 笑死擂达,一個胖子當著我的面吹牛土铺,可吹牛的內容都是我干的。 我是一名探鬼主播板鬓,決...
    沈念sama閱讀 39,159評論 3 411
  • 文/蒼蘭香墨 我猛地睜開眼悲敷,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了俭令?” 一聲冷哼從身側響起后德,我...
    開封第一講書人閱讀 37,917評論 0 268
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎抄腔,沒想到半個月后瓢湃,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 44,360評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡赫蛇,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內容為張勛視角 年9月15日...
    茶點故事閱讀 36,673評論 2 327
  • 正文 我和宋清朗相戀三年绵患,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片棍掐。...
    茶點故事閱讀 38,814評論 1 341
  • 序言:一個原本活蹦亂跳的男人離奇死亡藏雏,死狀恐怖,靈堂內的尸體忽然破棺而出作煌,到底是詐尸還是另有隱情掘殴,我是刑警寧澤,帶...
    沈念sama閱讀 34,509評論 4 334
  • 正文 年R本政府宣布粟誓,位于F島的核電站奏寨,受9級特大地震影響,放射性物質發(fā)生泄漏鹰服。R本人自食惡果不足惜病瞳,卻給世界環(huán)境...
    茶點故事閱讀 40,156評論 3 317
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望悲酷。 院中可真熱鬧套菜,春花似錦、人聲如沸设易。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,882評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽顿肺。三九已至戏溺,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間屠尊,已是汗流浹背旷祸。 一陣腳步聲響...
    開封第一講書人閱讀 32,123評論 1 267
  • 我被黑心中介騙來泰國打工钓试, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留疯攒,地道東北人。 一個月前我還...
    沈念sama閱讀 46,641評論 2 362
  • 正文 我出身青樓顶瞒,卻偏偏與公主長得像浸赫,于是被迫代替她去往敵國和親嫌吠。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當晚...
    茶點故事閱讀 43,728評論 2 351

推薦閱讀更多精彩內容

  • rljs by sennchi Timeline of History Part One The Cognitiv...
    sennchi閱讀 7,312評論 0 10
  • 課程筆記 分身術學習的三個層次:以語言為先掺炭,以情緒為里辫诅,以信念為根 信念是本質性的沖突,是情緒產(chǎn)生的根源涧狮,是我們堅...
    云陽S閱讀 354評論 0 0
  • 1者冤、你的一生肤视,我只借一程,這一程涉枫,是余生邢滑。 2、世界上最痛苦的事愿汰,莫過于眼睜睜看著你愛的人愛上了別人困后。因為你知道乐纸,...
    華水亦閱讀 562評論 0 1
  • 多年前,一個少年懷揣3000元開始了任性隨意的旅行摇予。從青海到甘肅汽绢,從甘肅到西藏,最自由的行程也莫不如是侧戴。西藏的沙土...
    韻小喵閱讀 459評論 4 1
  • 摘抄: 1所謂需要專注的時間之外的時間宁昭,就像跳高前的助跑。想跳得更高酗宋,如何做好助跑很重要积仗。同樣的道理,要專注做某事...
    答案就在你心里28閱讀 192評論 0 0