209. Minimum Size Subarray Sum

Given an array of n positive integers and a positive integer s, find the minimal length of a contiguous subarray of which the sum ≥ s. If there isn't one, return 0 instead.
For example, given the array [2,3,1,2,4,3]
and s = 7
,the subarray [4,3]
has the minimal length under the problem constraint.
click to show more practice.
More practice:If you have figured out the O(n) solution, try coding another solution of which the time complexity is O(n log n).

Approach#1 Brute Force

Brute force方法就是兩個循環(huán)港谊,start和end指針之間的數(shù)加起來搅裙。復雜度O(n2)丰介,一次AC赊抖。沒毛病,老鐵区转。

    /**
     * O(n^2)
     */
    public int minSubArrayLen0(int s, int[] nums) {
        int minLen = Integer.MAX_VALUE;
        for (int i = 0; i < nums.length; i++) {
            int sum = 0;
            for (int j = i; j < nums.length; j++) {
                sum += nums[j];
                if (sum >= s) {
                    //Math.min..
                    minLen = j - i + 1 < minLen ? j - i + 1 : minLen;
                    break;
                }
            }
        }
        return minLen == Integer.MAX_VALUE ? 0 : minLen;
    }

Approach #2 Sliding Window

我想了類似的題目比如subarray sum equals k弧满,523. Continuous Subarray Sum等等,都是用一個map儲存過往的值狮暑,然后要么減去k,要么mod k暇赤;所以這題我也想map心例,結果發(fā)現(xiàn)這個是要求>=一個值而不是一個精確值宵凌,有可能map不到啊鞋囊。跟567. Permutation in String類似用Sliding window,兩個指針瞎惫。

然后我就看答案了溜腐。O(n)做法像下面這樣,竟然不需要用map瓜喇。
兩層while挺益,乍看上去像是O(n2),其實是O(n)乘寒。
而且望众,貌似用for不太方便,只能用while伞辛。
而且烂翰,subarray sum equals k那題用這個方法似乎不太可行。

    /**
     * O(n)
     */
    public int minSubArrayLen(int s, int[] nums) {
        if (nums == null || nums.length == 0)
            return 0;
        
        int minLen = Integer.MAX_VALUE;
        int sum = 0;
        int j = 0;
        int i = 0;
        while (j < nums.length) {
            sum += nums[j++];
            while (sum >= s) {
                minLen = Math.min(minLen, j - 1 - i + 1);
                sum -= nums[i++];
            }
        }
        return minLen == Integer.MAX_VALUE ? 0 : minLen ;
    }

approach3 binary search

另外貼一個O(nlogn)的解法蚤氏,我沒動手做了:

    private int solveNLogN(int s, int[] nums) {
        int[] sums = new int[nums.length + 1];
        for (int i = 1; i < sums.length; i++) sums[i] = sums[i - 1] + nums[i - 1];
        int minLen = Integer.MAX_VALUE;
        for (int i = 0; i < sums.length; i++) {
            int end = binarySearch(i + 1, sums.length - 1, sums[i] + s, sums);
            if (end == sums.length) break;
            if (end - i < minLen) minLen = end - i;
        }
        return minLen == Integer.MAX_VALUE ? 0 : minLen;
    }
    
    private int binarySearch(int lo, int hi, int key, int[] sums) {
        while (lo <= hi) {
           int mid = (lo + hi) / 2;
           if (sums[mid] >= key){
               hi = mid - 1;
           } else {
               lo = mid + 1;
           }
        }
        return lo;
    }

As to NLogN solution, logN immediately reminds you of binary search. In this case, you cannot sort as the current order actually matters. How does one get an ordered array then? Since all elements are positive, the cumulative sum must be strictly increasing. Then, a subarray sum can expressed as the difference between two cumulative sum. Hence, given a start index for the cumulative sum array, the other end index can be searched using binary search.

--

明天做76題或者Maximum Size Subarray Sum Equals k(我發(fā)現(xiàn)AC后推薦的題目很準確甘耿。。)

最后編輯于
?著作權歸作者所有,轉載或內容合作請聯(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
  • 文/不壞的土叔 我叫張陵,是天一觀的道長乖菱。 經常有香客問我坡锡,道長,這世上最難降的妖魔是什么窒所? 我笑而不...
    開封第一講書人閱讀 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)了一具尸體,經...
    沈念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

推薦閱讀更多精彩內容