博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
209. Minimum Size Subarray Sum
阅读量:5884 次
发布时间:2019-06-19

本文共 1209 字,大约阅读时间需要 4 分钟。

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.

Example:

Input: s = 7, nums = [2,3,1,2,4,3]

Output: 2
Explanation: the subarray [4,3] has the minimal length under the problem constraint.
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).

难度:medium

题目:

给定一个包含正整数的数组和一个正整数s,找出最小长度且元素相连的子数组使得其和大于s. 如果不存在这样的子数组,则返回0.

思路:

滑动伸缩窗口。滑动窗口左边界为start index, 右边界为i, 窗口为[start index, i].

Runtime: 2 ms, faster than 99.88% of Java online submissions for Minimum Size Subarray Sum.

class Solution {    // O(2n)    public int minSubArrayLen(int s, int[] nums) {        int sum = 0, startIdx = 0;        int minLen = nums.length + 1;        for (int i = 0; i < nums.length; i++) {            sum += nums[i];            if (sum >= s) {                // shrink window                while (startIdx <= i && sum >= s) {                    minLen = Math.min(minLen, i - startIdx + 1);                    sum -= nums[startIdx++];                }            }        }                return minLen > nums.length ? 0 : minLen;    }}

转载地址:http://nelix.baihongyu.com/

你可能感兴趣的文章
AD提高动态的方法(附SNR计算)
查看>>
[转]轻松实现可伸缩性,容错性,和负载平衡的大规模多人在线系统
查看>>
五 数组
查看>>
也谈跨域数据交互解决方案
查看>>
EntityFramework中使用Include可能带来的问题
查看>>
面试题28:字符串的排列
查看>>
css important
查看>>
WPF 实现窗体拖动
查看>>
NULL不是数值
查看>>
Oracle学习笔记之五,Oracle 11g的PL/SQL入门
查看>>
css绘制几何图形
查看>>
结合kmp算法的匹配动画浅析其基本思想
查看>>
Android网络编程11之源码解析Retrofit
查看>>
安全预警:全球13.5亿的ARRIS有线调制解调器可被远程攻击
查看>>
麦子学院与阿里云战略合作 在线教育领军者技术实力被认可
查看>>
正确看待大数据
查看>>
Facebook通过10亿单词构建有效的神经网络语言模型
查看>>
发展大数据不能抛弃“小数据”
查看>>
中了WannaCry病毒的电脑几乎都是Win 7
查看>>
学生机房虚拟化(九)系统操作设计思路
查看>>