国产xxxx99真实实拍_久久不雅视频_高清韩国a级特黄毛片_嗯老师别我我受不了了小说

資訊專欄INFORMATION COLUMN

LeetCode 209:最小長度的子數(shù)組 Minimum Size Subarray Sum

JayChen / 846人閱讀

摘要:如果不存在符合條件的連續(xù)子數(shù)組,返回。示例輸入輸出解釋子數(shù)組是該條件下的長度最小的連續(xù)子數(shù)組。截取從索引到索引的數(shù)組,該數(shù)組之和若小于,則繼續(xù)后移,直到大于等于。記錄與差值返回的目標數(shù)。之后后移一位繼續(xù)刷新新數(shù)組。

公眾號: 愛寫bug(ID:icodebugs)

作者:愛寫bug

給定一個含有 n 個正整數(shù)的數(shù)組和一個正整數(shù) s ,找出該數(shù)組中滿足其和 ≥ s 的長度最小的連續(xù)子數(shù)組。如果不存在符合條件的連續(xù)子數(shù)組,返回 0。

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.

示例:

輸入: s = 7, nums = [2,3,1,2,4,3]
輸出: 2
解釋: 子數(shù)組 [4,3] 是該條件下的長度最小的連續(xù)子數(shù)組。

進階:

如果你已經(jīng)完成了O(n) 時間復(fù)雜度的解法, 請嘗試 O(n log n) 時間復(fù)雜度的解法。

Follow up:

If you have figured out the O(n) solution, try coding another solution of which the time complexity is O(n log n).

解題思路:

這里我們一步到位,直接用 O(n log n) 時間復(fù)雜度的解法。

? 我們定義兩個指針i、j,i 指向所截取的連續(xù)子數(shù)組的第一個數(shù),j 指向連續(xù)子數(shù)組的最后一個數(shù)。截取從索引 i 到索引 j 的數(shù)組,該數(shù)組之和若小于 s,則 j 繼續(xù)后移,直到大于等于s。記錄 j 與 i 差值(返回的目標數(shù))。之后i 后移一位繼續(xù)刷新新數(shù)組。

最壞情況是 i 從0移動到末尾,時間復(fù)雜度為O(n),內(nèi)循環(huán) j 時間復(fù)雜度O(log n),總時間復(fù)雜度 O(n log n) ,
這道題 Java 提交運行時間:Your runtime beats 99.95 % of java submissions.

Java:
class Solution {
    public int minSubArrayLen(int s, int[] nums) {
        if(nums.length==0)return 0;//空數(shù)組則直接返回0
        //返回的目標數(shù) target 定義為最大,sum 起始值為數(shù)組第一個數(shù)
        int i=0,j=0,numsLen=nums.length,target=Integer.MAX_VALUE,sum=nums[i];
        while (i=numsLen){//如果j等于numsLen,則sum已是從索引i到末位的所有數(shù)字之和,后面i無論怎么向后移動均不可能大于s,直接返回target
                    return target==Integer.MAX_VALUE ? 0:target;//如果target值依然為Integer.MAX_VALUE,則意味著i=0,sum為數(shù)組所有數(shù)之和,則返回0
                }else {
                    sum+=nums[j];//sum向后累加直到大于s
                }
            }
            if(j-i+1
Python3:
class Solution:
    def minSubArrayLen(self, s: int, nums: List[int]) -> int:
        if len(nums)==0: return 0
        i = 0
        j = 0
        nums_len = len(nums)
        target = float("inf")#將target定義為最大
        sum = nums[0]
        while i < nums_len:
            while sum < s:
                j+=1
                if j >= nums_len:
                    return target if target != float("inf") else 0
                else:
                    sum += nums[j]
            target = min(target, j - i + 1)
            sum -= nums[i]
            i+=1
        return target

文章版權(quán)歸作者所有,未經(jīng)允許請勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。

轉(zhuǎn)載請注明本文地址:http://specialneedsforspecialkids.com/yun/45124.html

相關(guān)文章

  • LeetCode 209最小長度的子數(shù)組 Minimum Size Subarray Sum

    摘要:如果不存在符合條件的連續(xù)子數(shù)組,返回。示例輸入輸出解釋子數(shù)組是該條件下的長度最小的連續(xù)子數(shù)組。截取從索引到索引的數(shù)組,該數(shù)組之和若小于,則繼續(xù)后移,直到大于等于。記錄與差值返回的目標數(shù)。之后后移一位繼續(xù)刷新新數(shù)組。 公眾號: 愛寫bug(ID:icodebugs)作者:愛寫bug 給定一個含有 n 個正整數(shù)的數(shù)組和一個正整數(shù) s ,找出該數(shù)組中滿足其和 ≥ s 的長度最小的連續(xù)子數(shù)組...

    jas0n 評論0 收藏0
  • LeetCode 209最小長度的子數(shù)組 Minimum Size Subarray Sum

    摘要:如果不存在符合條件的連續(xù)子數(shù)組,返回。示例輸入輸出解釋子數(shù)組是該條件下的長度最小的連續(xù)子數(shù)組。截取從索引到索引的數(shù)組,該數(shù)組之和若小于,則繼續(xù)后移,直到大于等于。記錄與差值返回的目標數(shù)。之后后移一位繼續(xù)刷新新數(shù)組。 算法是一個程序的靈魂 公眾號:愛寫bug(ID:icodebugs)作者:愛寫bug 給定一個含有 n 個正整數(shù)的數(shù)組和一個正整數(shù) s ,找出該數(shù)組中滿足其和 ≥ s 的...

    wow_worktile 評論0 收藏0
  • LeetCode 209最小長度的子數(shù)組 Minimum Size Subarray Sum

    摘要:如果不存在符合條件的連續(xù)子數(shù)組,返回。示例輸入輸出解釋子數(shù)組是該條件下的長度最小的連續(xù)子數(shù)組。截取從索引到索引的數(shù)組,該數(shù)組之和若小于,則繼續(xù)后移,直到大于等于。記錄與差值返回的目標數(shù)。之后后移一位繼續(xù)刷新新數(shù)組。 算法是一個程序的靈魂 公眾號:愛寫bug(ID:icodebugs)作者:愛寫bug 給定一個含有 n 個正整數(shù)的數(shù)組和一個正整數(shù) s ,找出該數(shù)組中滿足其和 ≥ s 的...

    Vixb 評論0 收藏0
  • [LeetCode] 209. Minimum Size Subarray Sum (Easy ve

    Problem 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 isnt one, return 0 instead. Example: Input: s =...

    HelKyle 評論0 收藏0
  • [Leetcode] Minimum Size Subarray Sum 最短子串和

    摘要:雙指針復(fù)雜度時間空間思路我們用兩個指針維護一個窗口,保證這個窗口的內(nèi)的和是小于目標數(shù)的。如果和仍小于目標數(shù),則將窗口右邊界右移。另外,如果左邊界大于右邊界時,說明最短子串的長度已經(jīng)小于等于,我們就不用再查找了。 Minimum Size Subarray Sum Given an array of n positive integers and a positive integer ...

    wthee 評論0 收藏0

發(fā)表評論

0條評論

最新活動
閱讀需要支付1元查看
<