摘要:如果不是,則在相鄰的兩個(gè)內(nèi)再找。如果相鄰的內(nèi)元素絕對值只差在以內(nèi),說明我們知道到了,返回為了保證,我們在時(shí),刪除對應(yīng)的的元素都會(huì)落在里。為了解決這個(gè)問題,所有元素橫移。
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.
題意找到一組數(shù),nums[i] and nums[j] 他們idx差值在k以內(nèi), 即 j - i <= k. 他們的差的絕對值在t以內(nèi),即 Math.abs(nums[i] - nums[j]) <= t. 我們可以構(gòu)建一個(gè)大小為t+1的bucket, 比如[0, 1, 2, 3, ... , t] 最大絕對值差的兩個(gè)數(shù)就是t和0. 如果兩個(gè)數(shù)字出現(xiàn)在同一個(gè)Bucket內(nèi),說明我們已經(jīng)找到了。 如果不是,則在相鄰的兩個(gè)bucket內(nèi)再找。 如果相鄰的bucket內(nèi)元素絕對值只差在t以內(nèi),說明我們知道到了,返回true. 為了保證j - i <= k,我們在i>=k時(shí),刪除 nums[i-k]對應(yīng)的Bucket.
public class Solution { public boolean containsNearbyAlmostDuplicate(int[] nums, int k, int t) { if( k < 1 || t < 0) return false; Mapmap = new HashMap<>(); for(int i = 0; i < nums.length; i++){ // [-t, 0] [0, t] 的元素都會(huì)落在bucket[0]里。 // 為了解決這個(gè)問題,所有元素橫移Integer.MIN_VALUE。 long remappedNum = (long) nums[i] - Integer.MIN_VALUE; long bucket = remappedNum / ((long)t + 1); if(map.containsKey(bucket) ||(map.containsKey(bucket-1) && remappedNum - map.get(bucket-1) <= t) || (map.containsKey(bucket+1) && map.get(bucket+1) - remappedNum <= t) ) return true; if(i >= k) { long lastBucket = ((long) nums[i-k] - Integer.MIN_VALUE) / ((long)t + 1); map.remove(lastBucket); } map.put(bucket,remappedNum); } return false; } }
TreeSet也可以解決這個(gè)問題, 我們首先需要把i-j <=k 的所有元素裝起來, 然后集合內(nèi)的元素可以保證有序,在里面找最接近nums[i] +/- t的元素就行了。 [11,12,14,15] tree.floor(13) = 12 tree.floor(12) = 12 tree.ceiling(13) = 14 tree.ceiling(14) = 14
public class Solution { public boolean containsNearbyAlmostDuplicate(int[] nums, int k, int t) { if( k < 1 || t < 0) return false; TreeSettree = new TreeSet<>(); for(int i = 0; i < nums.length; i++){ Long floor = tree.floor((long)nums[i] + t); Long ceil = tree.ceiling((long)nums[i] - t); if((floor != null && floor >= nums[i]) || (ceil != null && ceil <= nums[i]) ) return true; tree.add((long)nums[i]); if(i >= k){ tree.remove((long)nums[i-k]); } } return false; } }
文章版權(quán)歸作者所有,未經(jīng)允許請勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。
轉(zhuǎn)載請注明本文地址:http://specialneedsforspecialkids.com/yun/70090.html
Problem 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 dif...
摘要:輸入一個(gè)整數(shù)數(shù)組,查看數(shù)組中是否存在重復(fù)的值。新的數(shù)組中數(shù)組的下標(biāo)為原數(shù)組的值,如果遍歷過,則設(shè)置為。這里使用了作為實(shí)現(xiàn)的數(shù)據(jù)結(jié)構(gòu),通過堆的形式對集合中的數(shù)據(jù)進(jìn)行存儲,從而我們可以通過某種順序獲得該集合中的所有順序。 217 Contains Duplicate Given an array of integers, find if the array contains any dup...
摘要:代碼集合法復(fù)雜度時(shí)間空間思路同樣使用集合,但這次我們要維護(hù)集合的大小不超過,相當(dāng)于是記錄一個(gè)寬度為的窗口中出現(xiàn)過的數(shù)字。 Contains Duplicate I Given an array of integers, find if the array contains any duplicates. Your function should return true if any v...
摘要:在線網(wǎng)站地址我的微信公眾號完整題目列表從年月日起,每天更新一題,順序從易到難,目前已更新個(gè)題。這是項(xiàng)目地址歡迎一起交流學(xué)習(xí)。 這篇文章記錄我練習(xí)的 LeetCode 題目,語言 JavaScript。 在線網(wǎng)站:https://cattle.w3fun.com GitHub 地址:https://github.com/swpuLeo/ca...我的微信公眾號: showImg(htt...
摘要:月下半旬攻略道題,目前已攻略題。目前簡單難度攻略已經(jīng)到題,所以后面會(huì)調(diào)整自己,在刷算法與數(shù)據(jù)結(jié)構(gòu)的同時(shí),攻略中等難度的題目。 Create by jsliang on 2019-07-30 16:15:37 Recently revised in 2019-07-30 17:04:20 7 月下半旬攻略 45 道題,目前已攻略 100 題。 一 目錄 不折騰的前端,和咸魚有什么區(qū)別...
閱讀 1141·2021-11-23 10:04
閱讀 2401·2021-11-22 15:29
閱讀 2743·2021-11-19 09:40
閱讀 715·2021-09-22 15:26
閱讀 2117·2019-08-29 16:27
閱讀 2484·2019-08-29 16:10
閱讀 1918·2019-08-29 15:43
閱讀 3275·2019-08-29 12:43