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

Lintcode: Minimum Subarray 解题报告

时间:2014-12-19 19:05:04      阅读:250      评论:0      收藏:0      [点我收藏+]

标签:

Minimum Subarray

原题链接: http://lintcode.com/zh-cn/problem/minimum-subarray/#

Given an array of integers, find the subarray with smallest sum.

Return the sum of the subarray.

注意

The subarray should contain at least one integer.

样例

For [1, -1, -2, 1], return -3

标签 Expand

技术分享

SOLUTION 1:

1. 我们把整个array * -1,把它转化为求最大和的题目。

2. 然后我们可以使用Sliding window的方法来做。记录一个sum,如果发现sum<0 则丢弃,否则不断把当前的值累加到sum,

3. 每计算一次sum,求一次max.

4. 返回-max即可。

技术分享
 1 public class Solution {
 2     /**
 3      * @param nums: a list of integers
 4      * @return: A integer indicate the sum of minimum subarray
 5      */
 6     public int minSubArray(ArrayList<Integer> nums) {
 7         // write your code
 8         
 9         int len = nums.size();
10         
11         int max = Integer.MIN_VALUE;
12         int sum = 0;
13         for (int i = 0; i < len; i++) {
14             if (sum < 0) {
15                 sum = -nums.get(i);
16             } else {
17                 sum += -nums.get(i);
18             }
19             
20             max = Math.max(max, sum);
21         }
22         
23         return -max;
24     }
25 }
View Code

GITHUB:

https://github.com/yuzhangcmu/LeetCode_algorithm/blob/master/lintcode/array/SubarraySum.java

 

Lintcode: Minimum Subarray 解题报告

标签:

原文地址:http://www.cnblogs.com/yuzhangcmu/p/4174552.html

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