题解 | #寻找最合适的生育区域#

寻找最合适的生育区域

https://www.nowcoder.com/practice/c183c254a5c94b9da341fb27fb3caf99

import java.util.*;


public class Solution {
    /**
     * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
     *
     * 
     * @param heights int整型一维数组 
     * @param k int整型 
     * @return int整型
     */
    public int findMaxRangeWithinThreshold (int[] heights, int k) {
        // write code here
	// 小根堆
        PriorityQueue<Integer> pq = new PriorityQueue<>((a, b) -> (a - b));
        // 大根堆
        PriorityQueue<Integer> pq2 = new PriorityQueue<>((a, b) -> (b - a));
        int l = 0, res = Integer.MIN_VALUE;
	// 删除数据记录
        HashMap<Integer, Integer> rec = new HashMap<>();
        for (int r = 0; r < heights.length; r++) {
            pq.offer(heights[r]);
            pq2.offer(heights[r]);
            while (pq2.peek() - pq.peek() > k) {
		// 收缩左边界
                int x = heights[l++];
                rec.put(x, rec.getOrDefault(x, 0) + 1);
                while (!pq.isEmpty() && rec.containsKey(pq.peek())) {
                    int temp = pq.poll();
                    rec.put(temp, rec.get(temp) - 1);
                    if (rec.get(temp) == 0)
                        rec.remove(temp);
                }
                while (!pq2.isEmpty() && rec.containsKey(pq2.peek())) {
                    int temp = pq2.poll();
                    rec.put(temp, rec.get(temp) - 1);
                    if (rec.get(temp) == 0)
                        rec.remove(temp);
                }
            }
            res = Math.max(res, r - l + 1);
        }
        return res;
    }
}

全部评论

相关推荐

不愿透露姓名的神秘牛友
11-27 10:48
点赞 评论 收藏
分享
11-27 12:36
已编辑
门头沟学院 前端工程师
Apries:这个阶段来说,很厉害很厉害了,不过写的简历确实不是很行,优势删掉吧,其他的还行
点赞 评论 收藏
分享
10-09 00:50
已编辑
长江大学 算法工程师
不期而遇的夏天:1.同学你面试评价不错,概率很大,请耐心等待;2.你的排名比较靠前,不要担心,耐心等待;3.问题不大,正在审批,不要着急签其他公司,等等我们!4.预计9月中下旬,安心过节;5.下周会有结果,请耐心等待下;6.可能国庆节前后,一有结果我马上通知你;7.预计10月中旬,再坚持一下;8.正在走流程,就这两天了;9.同学,结果我也不知道,你如果查到了也告诉我一声;10.同学你出线不明朗,建议签其他公司保底!11.同学你找了哪些公司,我也在找工作。
点赞 评论 收藏
分享
不愿透露姓名的神秘牛友
11-29 12:19
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务