[leetcode] 220. Contains Duplicate III

网友投稿 249 2022-08-26

[leetcode] 220. Contains Duplicate III

Description

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

Example 1:

Input: nums = [1,2,3,1], k = 3, t = 0Output: true

Example 2:

Input: nums = [1,0,1,1], k = 1, t = 2Output: true

Example 3:

Input: nums = [1,5,9,1,5,9], k = 2, t = 3Output: false

分析

题目的意思是:给定一个整数数组,两个数差距最多为t,两数的间隔最大为k。

这里需要两个指针i和j,刚开始i和j都指向0,然后i开始向右走遍历数组,如果i和j之差大于k,且m中有nums[j],则删除并j加一。这样保证了m中所有的数的下标之差都不大于k.我们用map数据结构的lower_bound()函数来找一个特定范围,就是大于或等于nums[i] - t的地方,所有小于这个阈值的数和nums[i]的差的绝对值会大于t.然后检测后面的所有的数字,如果数的差的绝对值小于等于t,则返回true.

代码

class Solution {public: bool containsNearbyAlmostDuplicate(vector& nums, int k, int t) { map m; int j=0; for(int i=0;ik) m.erase(nums[j++]); auto a=m.lower_bound((long long)nums[i]-t); if(a!=m.end()&&abs(a->first-nums[i])<=t){ return true; } m[nums[i]]=i; } return false; }};

参考文献

​​[LeetCode] Contains Duplicate III 包含重复值之三​​

版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:[leetcode] 1390. Four Divisors
下一篇:高明的营销卖的不只是产品,更是生活方式!(产品的成功取决于高明的销售手段)
相关文章

 发表评论

暂时没有评论,来抢沙发吧~