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

LeetCode 525. Contiguous Array

时间:2019-03-29 17:27:16      阅读:133      评论:0      收藏:0      [点我收藏+]

标签:dma   方法   binary   equal   value   不同的   dex   lse   esc   

Problem Description:

Given a binary array, find the maximum length of a contiguous subarray with equal number of 0 and 1.

题解:

这个题很容易想到复杂度为O(n^2)的暴力方法。看了提示HashMap后想了大概半个小时想到了O(n)的解法。

我的想法是用HasmMap<Integer, Integer> map , Key是从头到index的和,value是早出现该sum的index。不同的是遇到1sum+=1,而遇到0时sum-=1.

这样到出现相同的key时,更新res。

class Solution {
    public int findMaxLength(int[] nums) {
        int res = 0;
        Map<Integer, Integer> map = new HashMap<>();
        int sum = 0;
        map.put(0, -1);
        for(int i = 0; i < nums.length; i++) {
            sum += nums[i] == 1 ? 1 : -1;
            if(map.containsKey(sum)) {
                res = Math.max(res, i - map.get(sum));
            } else {
                map.put(sum, i);
            }
        }
        return res;
    }
}

 

LeetCode 525. Contiguous Array

标签:dma   方法   binary   equal   value   不同的   dex   lse   esc   

原文地址:https://www.cnblogs.com/rookielet/p/10622463.html

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