码迷,mamicode.com
首页 > 其他好文 > 详细

209. Minimum Size Subarray Sum

时间:2017-07-10 23:48:58      阅读:186      评论:0      收藏:0      [点我收藏+]

标签:find   fast   osi   strong   element   use   ini   example   min   

https://leetcode.com/problems/minimum-size-subarray-sum/#/description

 

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.

 

Sol:

 

https://discuss.leetcode.com/topic/13759/python-3-different-ac-solutions

 

 

class Solution(object):
    def minSubArrayLen(self, s, nums):
        """
        :type s: int
        :type nums: List[int]
        :rtype: int
        """
        
        # two pointers
        if len(nums) == 0:
            return 0
        
        sum = 0
        i = 0
        # fast pointer j
        j = 0
        res = len(nums) + 1
        while sum < s:
            sum += nums[j]
            j += 1
            
            # to enter the while loop below, sum is greater than s, now let‘s use another pointer i(slow) pointer to find the intervals between i and j.  
            
            while sum >= s:
                # if i and j still have elements among them
                if  res > j - i:
                    res = j - i
                sum -= nums[i]
                i += 1
                
                
            if j == len(nums):
                break
        
        # if sum > s at the very beginning, then the program will not enter the first while loop. Thus 0 will be returned. 
        if res > len(nums):
            return 0
        
        return res
            

 

209. Minimum Size Subarray Sum

标签:find   fast   osi   strong   element   use   ini   example   min   

原文地址:http://www.cnblogs.com/prmlab/p/7148125.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!