摘要:题目要求假设一个二维的整数数组中每一行表示一个区间,每一行的第一个值表示区间的左边界,第二个值表示区间的右边界。
题目要求
Given a set of intervals, for each of the interval i, check if there exists an interval j whose start point is bigger than or equal to the end point of the interval i, which can be called that j is on the "right" of i. For any interval i, you need to store the minimum interval j"s index, which means that the interval j has the minimum start point to build the "right" relationship for interval i. If the interval j doesn"t exist, store -1 for the interval i. Finally, you need output the stored value of each interval as an array. Note: You may assume the interval"s end point is always bigger than its start point. You may assume none of these intervals have the same start point. Example 1: Input: [ [1,2] ] Output: [-1] Explanation: There is only one interval in the collection, so it outputs -1. Example 2: Input: [ [3,4], [2,3], [1,2] ] Output: [-1, 0, 1] Explanation: There is no satisfied "right" interval for [3,4]. For [2,3], the interval [3,4] has minimum-"right" start point; For [1,2], the interval [2,3] has minimum-"right" start point. Example 3: Input: [ [1,4], [2,3], [3,4] ] Output: [-1, 2, -1] Explanation: There is no satisfied "right" interval for [1,4] and [3,4]. For [2,3], the interval [3,4] has minimum-"right" start point. NOTE: input types have been changed on April 15, 2019. Please reset to default code definition to get new method signature.
假设一个二维的整数数组中每一行表示一个区间,每一行的第一个值表示区间的左边界,第二个值表示区间的右边界。现在要求返回一个整数数组,用来记录每一个边界右侧最邻近的区间。
如[ [1,4], [2,3], [3,4] ]表示三个区间,[1,4]不存在最邻近右区间,因此[1,4]的最邻近右区间的位置为-1。[2,3]最邻近右区间为[3,4],因此返回2,[3,4]也不存在最临近右区间,因此也返回-1。最终函数返回数组[-1,2,-1]。
思路1:二分法如果我们将区间按照左边界进行排序,则针对每一个区间的右边界,只要找到左边界比这个值大的最小左边界所在的区间即可。这里不能够直接对原来的二维数组进行排序,因为会丢失每一个区间的原始下标位置。代码中采用了内部类Node来记录每一个区间的左边界以及每一个区间的原始下标,并对Node进行排序和二分法查找。代码如下:
public int[] findRightInterval(int[][] intervals) { int[] result = new int[intervals.length]; Arrays.fill(result, -1); Node[] leftIndex = new Node[intervals.length]; for(int i = 0 ; i思路二:桶排序rightIndex) { right = mid - 1; }else { left = mid + 1; } } if(leftIndex[right].value == rightIndex) { result[i] = leftIndex[right].index; }else if(right { int value; int index; @Override public int compareTo(Node o) { // TODO Auto-generated method stub return this.value - o.value; } }
换一种思路,有没有办法将所有的区间用一维数组的方式展开,一维数组的每一个下标上的值,都记录了该位置所在的右侧第一个区间。具体流程如下:
假设输入为[3,4], [2,3], [1,2]的三个区间,展开来后我们知道这里的三个区间横跨了[1,4]这么一个区间
我们可以用长度为4的一维数组bucket来表示这个完整的区间,其中每一个下标代表的位置都以左边界作为偏移值,如数组的0下标其实代表位置1,数组的1下标代表位置2。
先根据所有区间的左值更新区间数组,如[3,4]代表着区间数组中位置为3-1=2的位置的第一个右侧区间为[3,4], 因此bucket[2]=0, 同理bucket[1]=0, bucket[0]=1
开始查询时,如果当前桶下标上没有记录右侧的第一个区间,则不停的向右遍历,直到找到第一个值。如果没找到,则说明其右侧不存在区间了。反过来,也可以从右往左遍历bucket数组,每遇到一个没有填充的位置,就将右侧的值赋予当前位置。
代码如下:
public int[] findRightInterval(int[][] intervals) { int[] result = new int[intervals.length]; int min = intervals[0][0], max = intervals[0][1]; for(int i = 1 ; i=0 ; i--) { if(buckets[i] == -1) buckets[i] = buckets[i+1]; } for(int i = 0 ; i 这里的核心思路在于,如何理解bucket数组,这个bucket数组本质上是将所有的区间以最左边界和最右边界展开,数组的每一个下标对应着区间中的相对位置,并记录了这个下标右侧的第一个区间的位置。
文章版权归作者所有,未经允许请勿转载,若此文章存在违规行为,您可以联系管理员删除。
转载请注明本文地址:https://www.ucloud.cn/yun/75332.html
摘要: Problem In a given array nums of positive integers, find three non-overlapping subarrays with maximum sum. Each subarray will be of size k, and we want to maximize the sum of all 3*k entries. R...
摘要:排序法复杂度时间空间思路这题和很像,我们按开始时间把这些都给排序后,就挨个检查是否有冲突就行了。有冲突的定义是开始时间小于之前最晚的结束时间。这里之前最晚的结束时间不一定是上一个的结束时间,所以我们更新的时候要取最大值。 Meeting Rooms Given an array of meeting time intervals consisting of start and end...
Problem Given an array of meeting time intervals consisting of start and end times [[s1,e1],[s2,e2],...] (si < ei), find the minimum number of conference rooms required. Example 1: Input: [[0, 30],[5,...
Problem Given a collection of intervals, find the minimum number of intervals you need to remove to make the rest of the intervals non-overlapping. Note:You may assume the intervals end point is alway...
阅读 2311·2021-09-22 15:15
阅读 598·2021-09-02 15:11
阅读 1742·2021-08-30 09:48
阅读 1816·2019-08-30 15:56
阅读 1389·2019-08-30 15:52
阅读 1994·2019-08-30 15:44
阅读 394·2019-08-29 16:29
阅读 1501·2019-08-29 11:06