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

17.18. 最短超串

时间:2020-05-07 19:27:49      阅读:39      评论:0      收藏:0      [点我收藏+]

标签:==   查找   etc   objects   min   tco   i++   count   class   

leetcode

假设你有两个数组,一个长一个短,短的元素均不相同。找到长数组中包含短数组所有的元素的最短子数组,其出现顺序无关紧要。

返回最短子数组的左端点和右端点,如有多个满足条件的子数组,返回左端点最小的一个。若不存在,返回空数组。

示例 1:

输入:
big = [7,5,9,0,2,1,3,5,7,9,1,1,5,8,8,9,7]
small = [1,5,9]
输出: [7,10]
示例 2:

输入:
big = [1,2,3]
small = [4]
输出: []
提示:

big.length <= 100000
1 <= small.length <= 100000

class Solution {
    public int[] shortestSeq(int[] big,int[] small) {
        if(small.length>big.length){ //small长度大于big的情况
            return new int[0];
        }
        Map<Integer,Integer> map = new HashMap<>();
        int count = small.length;
        int[] ans = {0,big.length};

        for(int i:small){
            map.put(i, -1);
        }

        for(int i=0;i<big.length;i++){
            if(map.containsKey(big[i])){
                if(map.get(big[i])==-1){
                    count--;
                }
                map.put(big[i], i);
            }
            if(count<=0){
                Object[] objects =  map.values().toArray();
                int minNum = getMin(objects);
                if(i-minNum+1<ans[1]-ans[0]+1){
                    ans[0]=minNum;
                    ans[1]=i;
                }
            }
            if(count>0&&big.length-1==i){ // 查找不到超短字串的情况
                ans=new int[0];
            }
        }

        return ans;
    }

    int getMin(Object[] obj) {
        int minNum = Integer.MAX_VALUE;
        for(Object i:obj){
            minNum=Math.min((int)i, minNum);
        }
        return minNum;
    }
}

题目链接

17.18. 最短超串

标签:==   查找   etc   objects   min   tco   i++   count   class   

原文地址:https://www.cnblogs.com/ZCWang/p/12844796.html

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