LeetCode 力扣 632. 最小区间 smallestRange

大家觉得写还可以,可以点赞、收藏、关注一下吧!
也可以到我的个人博客参观一下,估计近几年都会一直更新!和我做个朋友吧!https://motongxue.cn


632. 最小区间smallestRange

你有 k 个升序排列的整数数组。找到一个最小区间,使得 k 个列表中的每个列表至少有一个数包含在其中。

我们定义如果 b-a < d-c 或者在 b-a == d-c 时 a < c,则区间 [a,b] 比 [c,d] 小。

示例 1:

输入:[[4,10,15,24,26], [0,9,12,20], [5,18,22,30]]
输出: [20,24]

解释:

列表 1:[4, 10, 15, 24, 26],24 在区间 [20,24] 中。
列表 2:[0, 9, 12, 20],20 在区间 [20,24] 中。
列表 3:[5, 18, 22, 30],22 在区间 [20,24] 中。

注意:

  1. 给定的列表可能包含重复元素,所以在这里升序表示 >= 。
  2. 1 <= k <= 3500
  3. -105 <= 元素的值 <= 105
  4. 对于使用Java的用户,请注意传入类型已修改为List<List>。重置代码模板后可以看到这项改动。

这道题的本质就是经典例题:合并k个排序链表

/*
 * @Author: motongxue
 * @Date: 2020-07-31 17:05:57
 * @LastEditors: motongxue
 * @LastEditTime: 2020-08-03 17:17:35
 * @Blog: https://motongxue.cn
 * @Description: file content
 */
class Solution {
	public int[] smallestRange(List<List<Integer>> nums) {
	    int n = nums.size();
	    int inf = 0x3f3f3f;
	    int max = -inf; // 当前最大值
	    int st = -inf;  // 起点
	    int ed = inf;   // 终点
	
	    PriorityQueue<Node> pq = new PriorityQueue<>((o1, o2) -> Integer.compare(o1.val, o2.val));
	
	    // 相当于合并k个有序链表,把 head 放进去
	    for (int i = 0; i < n; i++) {
	        int val = nums.get(i).get(0);
	        pq.offer(new Node(i, 0, val));
	        max = Math.max(max, val);
	    }
	    
	    // 必须包含 k 个元素
	    while (pq.size() == n) {
	        Node node = pq.poll();
	        int i = node.i;
	        int j = node.j;
	        int val = node.val;
	
	        // 更新区间长度
	        if (max - val < ed - st) {
	            st = val;
	            ed = max;
	        }
	        
	        // 为堆中填充元素
	        if (j + 1 < nums.get(i).size()) {
	            int nVal = nums.get(i).get(j + 1);
	            pq.offer(new Node(i, j + 1, nVal));
	            max = Math.max(max, nVal);
	        }
	    }
	    return new int[]{st, ed};
	}

	class Node{
	    int i, j, val;
	
	    public Node(int i, int j, int val) {
	        this.i = i;
	        this.j = j;
	        this.val = val;
	    }
	}

}

在这里插入图片描述


2020年8月1日更

大家觉得写还可以,可以点赞、收藏、关注一下吧!
也可以到我的个人博客参观一下,估计近几年都会一直更新!和我做个朋友吧!https://motongxue.cn


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值