博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
220. Contains Duplicate III
阅读量:6331 次
发布时间:2019-06-22

本文共 2269 字,大约阅读时间需要 7 分钟。

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

难度:medium

题目:给定一整数数组,找出是否存在两个不同的索引i, j使其索引差的绝对值小于等于k, 值的差的绝对值小于等于t.

思路:

  1. 暴力破解,
  2. 使用滑动窗口和TreeSet是为了使得滑动窗口有序,TreeSet底层是二叉搜索树, 如果暴力破解时间复杂度为O(kn), 改用TreeSet使得搜索时间复杂度为O(log K), 故总的时间复杂度为O(nlog K)。

Runtime: 22 ms, faster than 70.38% of Java online submissions for Contains Duplicate III.

Memory Usage: 40.4 MB, less than 5.58% of Java online submissions for Contains Duplicate III.

class Solution {    public boolean containsNearbyAlmostDuplicate(int[] nums, int k, int t) {        if(nums == null || nums.length < 2 || k < 1 || t < 0){            return false;        }        TreeSet
treeSet = new TreeSet<>(); for (int i = 0; i < nums.length; i++) { if (!treeSet.subSet((long) nums[i] - t, true, (long) nums[i] + t, true).isEmpty()) { return true; } if (i >= k) { treeSet.remove((long) nums[i - k]); } treeSet.add((long) nums[i]); } return false; }}

Runtime: 987 ms, faster than 5.06% of Java online submissions for Contains Duplicate III.

Memory Usage: 38.8 MB, less than 56.75% of Java online submissions for Contains Duplicate III.

class Solution {    public boolean containsNearbyAlmostDuplicate(int[] nums, int k, int t) {        for (int i = 0; i < nums.length; i++) {            for (int j = i + 1; j < Math.min(nums.length, i + k + 1); j++) {                if (nums[i] > 0 && nums[j] < 0 || nums[i] < 0 && nums[j] > 0) {                    if (Math.abs(nums[i]) - t > 0                         || Math.abs(nums[i]) - t + Math.abs(nums[j]) > 0) {                        continue;                    }                }                                if (Math.abs(nums[i] - nums[j]) <= t) {                    return true;                }            }        }                            return false;    }}

转载地址:http://juboa.baihongyu.com/

你可能感兴趣的文章
查看所有用户和用户组
查看>>
12.13 Nginx防盗链;12.14 Nginx访问控制;12.15 Nginx解析php相关配置;12.16 Nginx代理...
查看>>
pg参数归类说明
查看>>
AGG第三课 下载与编译
查看>>
限制www目录下显示目录
查看>>
python多线程之事件触发(线程间通信)
查看>>
Zabbix日志监控:Linux异常登录告警
查看>>
CentOS6.5下源码编译安装httpd2.4.23
查看>>
nginx反代+varnish缓存+后端LAMP平台集群实现
查看>>
自己centos7架设hexo网站
查看>>
C语言内力修炼与软件工程
查看>>
给源码服务写启动脚本
查看>>
Foundation 6 – 先进的响应式的前端开发框架
查看>>
两类半人,你需要的是裤腰带,还是金腰带?
查看>>
在服务器本地监控服务端口命令之ss
查看>>
asp.net ajax1.0基础回顾(三):UpdatePanel的基本用法
查看>>
zabbix proxy 配置
查看>>
发掘网红IP价值 微博、IMS联手启动Vstar战略
查看>>
科学家用AI分析6亿帧视频,研究果蝇行为同脑回路间的关系
查看>>
Linux最常用的20条命令
查看>>