LeetCode(220) Contains Duplicate III

题目

Given an array of integers, find out whether there are two distinct indices i and j in the array such that the difference between nums[i] and nums[j] is at most t and the difference between i and j is at most k.

分析

题目描述:给定一个整数序列,查找是否存在两个下标分别为 i j的元素值 |nums[i]nums[j]|<t 且满足i于j的距离最大为 k

开始的时候,采取同 LeetCode(219) Contains Duplicate II的方法,元素值|nums[i]nums[j]|<t的元素在set内遍历查找一遍,复杂度为O(n),很遗憾的超时了;

然后,查找资料,看到了另外一种简单的方法map解决方法
使用 map 数据结构来解,用来记录数字和其下标之间的映射。 这里需要两个指针 i start,刚开始 i start都指向 0 ,然后i开始向右走遍历数组,如果 i start之差大于 k ,且map中有 nums[start] ,则删除并 start 加一。这样保证了 map 中所有的数的下标之差都不大于 k ,然后我们用map数据结构的 lowerbound() 函数来找一个特定范围,就是大于或等于 nums[i]t 的地方,所有小于这个阈值的数和 nums[i] 的差的绝对值会大于 t (可自行带数检验)。然后检测后面的所有的数字,如果数的差的绝对值小于等于t,则返回true。最后遍历完整个数组返回false。

AC代码

class Solution {
public:
    //方法一,TLE
    bool containsNearbyAlmostDuplicate1(vector<int>& nums, int k, int t) {
        if (nums.empty())
            return false;

        int sz = nums.size();
        //使用容器unordered_set 其查找性能为常量
        unordered_set<int> us;
        int start = 0, end = 0;
        for (int i = 0; i < sz; ++i)
        {
            int len = us.size();
            for (int j = 0; j < len; ++j)
            {
                int tmp = abs(nums[j] - nums[i]);
                if (tmp <= t)
                    return true;
            }//for
            us.insert(nums[i]);
            ++end;

            if (end - start > k)
            {
                us.erase(nums[start]);
                ++start;
            }
        }//for
        return false;

    }
    //方法二:
    bool containsNearbyAlmostDuplicate(vector<int>& nums, int k, int t) {
        if (nums.empty())
            return false;

        int sz = nums.size();
        map<long long, int > m;
        int start = 0;
        for (int i = 0; i < sz; ++i)
        {
            if (i - start >k && m[nums[start]] == start)
                m.erase(nums[start++]);

            auto a = m.lower_bound(nums[i] - t);
            if (a != m.end() && abs(a->first - nums[i]) <= t)
                return true;
            //将元素值和下标插入map
            m[nums[i]] = i;
        }//for
        return false;
        return false;

    }
};

GitHub测试程序源码

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值