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.
链接: http://leetcode.com/problems/contains-duplicate-iii/
题解:
一开始的想法是用类似Contains Duplicate II的方法,不过好像不好写。于是研究了一下Discuss,发现有大概三种解法。
- Sort the array, keep original index
- TreeMap
- Bucket sliding window.
最后暂时只做了第一种方法。排序以后再查找,这里需要自己定义一个数据结构,implements Comparable,并且还有一个inRangeTWith method来比较两个节点的原index是否在t范围内。 二刷一定要补上第二和第三种。
Time Complexity - O(n2) , Space Complexity - O(n)
public class Solution {
public boolean containsNearbyAlmostDuplicate(int[] nums, int k, int t) {
if(nums == null || nums.length < 2 || t < 0 || k < 0)
return false; ValueWithIndex[] arr = new ValueWithIndex[nums.length];
for(int i = 0; i < nums.length; i++)
arr[i] = new ValueWithIndex(nums[i], i); Arrays.sort(arr); for(int i = 0; i < arr.length; i++) {
for(int j = i + 1; (j < arr.length) && (arr[j].inRangeTWith(arr[i], t)); j++) {
if(Math.abs(arr[i].index - arr[j].index) <= k)
return true;
}
}
return false;
} private class ValueWithIndex implements Comparable<ValueWithIndex> {
public int value;
public int index; public ValueWithIndex(int val, int i) {
this.value = val;
this.index = i;
} public int compareTo(ValueWithIndex v2) {
if(value < 0 && v2.value >= 0)
return -1;
if(value >= 0 && v2.value < 0)
return 1;
return value - v2.value;
} public boolean inRangeTWith(ValueWithIndex v2, int t) { // value always >= v2.value
if(value == v2.value)
return true;
if(value >= 0 && v2.value >= 0)
return value - v2.value <= t;
else if(value < 0 && v2.value < 0)
return value <= v2.value + t;
else
return value - t <= v2.value;
}
}
}
二刷:
Java:
使用类似Contains Duplicates II的方法。 Time Complexity - O(n ^ 2) TLE, Space Complexity - O(n)
public class Solution {
public boolean containsNearbyAlmostDuplicate(int[] nums, int k, int t) {
if (nums == null || nums.length < 2) return false;
Set<Integer> set = new HashSet<>(); for (int i = 0; i < nums.length; i++) {
for (int num : set) {
if (Math.abs(num - nums[i]) <= t) return true;
}
set.add(nums[i]);
if (i >= k - 1) set.remove(i - k + 1);
}
return false;
}
}
新建数据结构先排序再查找。
- 这里我们先构建一个Node class包含val和index
- 根据数组,用nums[i]和i作为pair创建Node数组
- 对Node数组使用nums[i]进行排序
- 使用sliding window进行比较,这个部分比较的复杂度其实是O(n)
要注意我们的Node class继承了Comparable<Node> interface, 注意写compareTo() 和 inRangeTWith() 这两个方法时的一些边界条件地处理。
Time Complexity - O(nlogn) , Space Complexity - O(n)
public class Solution {
public boolean containsNearbyAlmostDuplicate(int[] nums, int k, int t) {
if (nums == null || nums.length < 2 || t < 0 || k < 0) return false;
int len = nums.length;
Node[] nodes = new Node[len];
for (int i = 0; i < len; i++) nodes[i] = new Node(nums[i], i);
Arrays.sort(nodes); for (int i = 0; i < len; i++) {
for (int j = i + 1; (j < len) && (nodes[j].inRangeTWith(nodes[i], t)); j++) {
if (Math.abs(nodes[i].index - nodes[j].index) <= k) return true;
}
}
return false;
} private class Node implements Comparable<Node> {
public int val;
public int index; public Node(int val, int i) {
this.val = val;
this.index = i;
} public int compareTo(Node n2) {
if (val < 0 && n2.val >= 0) return -1;
if (val >= 0 && n2.val < 0) return 1;
return val - n2.val;
} public boolean inRangeTWith(Node n2, int t) { // value always >= v2.value
if(val == n2.val) return true;
if((val >= 0 && n2.val >= 0) || (val < 0 && n2.val < 0)) {
return val - n2.val <= t;
} else {
return val <= n2.val - t;
} }
}
}
Reference:
https://leetcode.com/discuss/65056/java-python-one-pass-solution-o-n-time-o-n-space-using-buckets
https://leetcode.com/discuss/47974/java-treeset-implementation-nlogk
https://leetcode.com/discuss/52545/java-solution-without-dictionary-sort-nums-record-positions
https://leetcode.com/discuss/39216/ac-short-java-solution-using-treeset-and-subset-function
https://leetcode.com/discuss/38206/ac-o-n-solution-in-java-using-buckets-with-explanation
https://leetcode.com/discuss/38177/java-o-n-lg-k-solution
https://leetcode.com/discuss/38148/my-o-n-accepted-java-solution-using-hashmap
https://leetcode.com/discuss/38146/java-solution-with-treeset
220. Contains Duplicate III的更多相关文章
- [LeetCode] 220. Contains Duplicate III 包含重复元素 III
Given an array of integers, find out whether there are two distinct indices i and j in the array suc ...
- Java for LeetCode 220 Contains Duplicate III
Given an array of integers, find out whether there are two distinct indices i and j in the array suc ...
- (medium)LeetCode 220.Contains Duplicate III
Given an array of integers, find out whether there are two distinct indices i and j in the array suc ...
- 【LeetCode】220. Contains Duplicate III
题目: Given an array of integers, find out whether there are two distinct indices i and j in the array ...
- [Leetcode] 220. Contains Duplicate III
Given an array of integers, find out whether there are two distinct indices i and j in the array suc ...
- 【medium】220. Contains Duplicate III
因为要考虑超时问题,所以虽然简单的for循环也可以做,但是要用map等内部红黑树实现的容器. Given an array of integers, find out whether there ar ...
- 220. Contains Duplicate III 数组指针差k数值差t
[抄题]: Given an array of integers, find out whether there are two distinct indices i and j in the arr ...
- 220 Contains Duplicate III 存在重复 III
给定一个整数数组,判断数组中是否有两个不同的索引 i 和 j,使 nums [i] 和 nums [j] 的绝对差值最大为 t,并且 i 和 j 之间的绝对差值最大为 k. 详见:https://le ...
- LeetCode 220. Contains Duplicate III (分桶法)
Given an array of integers, find out whether there are two distinct indices i and j in the array suc ...
随机推荐
- ThreadPool 线程池的作用
相关概念: 线程池可以看做容纳线程的容器: 一个应用程序最多只能有一个线程池: ThreadPool静态类通过QueueUserWorkItem()方法将工作函数排入线程池: 每排入一个工作函数,就相 ...
- Ubuntu 14.04下java开发环境的搭建--2--Eclipse的安装
前面说了JDK的安装,http://www.cnblogs.com/bcsflilong/p/4196536.html 下面我们来安装Eclipse! 安装Eclipse 的前提是,你的JDK已经安装 ...
- Linux C 程序 获取目录信息(16)
4.获取当前目录getcwd 会将当前工作目录绝对路径复制到参数buf所指的内存空间5.设置工作目录chdir6.获取目录信息opendir打开一个目录readdir读取目录中的内容 读取目录项信息 ...
- Winform ComboBox控件高亮显示
//重绘下拉表单窗口,需要在窗口设计代码中加入下面这一句 this.cmdChannelName.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawF ...
- 解决ListView滑动时卡的问题,实现异步加载图片解决
ListView是最为常见的空间之一,现在的应用的呈现形式大多数都需要用到ListView来呈现,以列表的方式最直观最便于操作. 那么在使用的过程中大家一定使用adapter适配器来匹配这个ListV ...
- soinn
Growing Cell Structures A Self-Organizing Network for Unsupervised and Supervised Learning Here, and ...
- php curl 伪造IP来源的代码分享
php curl 可以模仿用户登录,还可以模仿用户IP地址.伪造IP来源. 1,curl发出请求的文件fake_ip.php: <?php $ch = curl_init(); $url = & ...
- 《C和指针》 读书笔记 -- 第13章 高级指针话题
1.函数指针 int (*f)(); int *(*f[])(); 用途: [1]回调函数 e.g. /*在一个单链表中查找指定值*/ Node *search_list(Node *node,voi ...
- Programming Collective Intelligence
最近正在拜读 O'reilly出版的Programming Collective Intelligence,准备研究研究搜索引擎了,童鞋们,到时候会考虑公布源码哦!
- Qt 内存管理机制(转)
许转载http://devbean.blog.51cto.com/448512/526734 强类型语言在创建对象时总会显式或隐式地包含对象的类型信息.也就是说,强类型语言在分配对象内存空间时,总 ...