当前位置: 首页 > article >正文

力扣(leetcode)每日一题 3255 长度为 K 的子数组的能量值 II|滑动窗口

3255. Find the Power of K-Size Subarrays II

1.题干

You are given an array of integers nums of length n and a positive integer k.

The power of an array is defined as:

  • Its maximum element if all of its elements are consecutive and sorted in ascending order.
  • -1 otherwise.

You need to find the power of all

subarrays

of nums of size k.

Return an integer array results of size n - k + 1, where results[i] is the power of nums[i..(i + k - 1)].

Example 1:

Input: nums = [1,2,3,4,3,2,5], k = 3

Output: [3,4,-1,-1,-1]

Explanation:

There are 5 subarrays of nums of size 3:

  • [1, 2, 3] with the maximum element 3.
  • [2, 3, 4] with the maximum element 4.
  • [3, 4, 3] whose elements are not consecutive.
  • [4, 3, 2] whose elements are not sorted.
  • [3, 2, 5] whose elements are not consecutive.

Example 2:

Input: nums = [2,2,2,2,2], k = 4

Output: [-1,-1]

Example 3:

Input: nums = [3,2,3,2,3,2], k = 2

Output: [-1,3,-1,3,-1]

2.题解

滑动窗口,常规解法

  
public static int[] resultsArray(int[] nums, int k) { //3  
    LinkedList<Integer> list = new LinkedList<>();  
    for (int i = 0; i < k - 1; i++) {  
        // 保证队列一次从小到大差值1排列  
        while (!list.isEmpty() && nums[list.getLast()] != (nums[i] - 1)) {  
            list.pollLast();  
        }  
        list.add(i);  
    }  
    int[] res = new int[nums.length - k + 1];  
    for (int i = k - 1; i < nums.length; i++) {  
        // 保证队列一次从小到大差值1排列  
        while (!list.isEmpty() && nums[list.getLast()] != (nums[i] - 1)) {  
            list.pollLast();  
        }  
        list.add(i);  
        // 如果队列数量和k相等,就是成立的  
        if (list.size() == k) {  
            res[i - k + 1] = nums[i];  
        } else {  
            res[i - k + 1] = -1;  
        }  
        // 加入当前为index 6,然后队列长度k为3,那么对于index 4的数据进行弹出,确保下个循环index 7进来之后,队列长度维持在k为3  
        if (list.getFirst() == i - k + 1) {  
            list.pollFirst();  
        }  
    }  
    return res;  
}

官方题解,属于技巧性

public int[] resultsArray(int[] nums, int k) {  
    int n = nums.length;  
    int[] ans = new int[n - k + 1];  
    Arrays.fill(ans, -1);  
    int cnt = 0;  
    for (int i = 0; i < n; i++) {  
        cnt = i == 0 || nums[i] - nums[i - 1] != 1 ? 1 : cnt + 1;  
        // 当连续数的时候,累计加上1  
        if (cnt >= k) {  
            ans[i - k + 1] = nums[i];  
        }  
    }  
    return ans;  
}
3.总结

面试编程时候肯定思维紧张,往滑动窗口上靠就对了


http://www.kler.cn/a/386783.html

相关文章:

  • 用MVVM设计模式提升WPF开发体验:分层架构与绑定实例解析
  • 深度学习中的感受野:从基础概念到多层次特征提取
  • 【mysql】使用宝塔面板在云服务器上安装MySQL数据库并实现远程连接
  • three.js 杂记
  • 文献解读-DNAscope: High accuracy small variant calling using machine learning
  • 【C++】new操作符的使用说明
  • 【系统架构设计师】2022年真题论文: 论软件维护方法及其应用(包括解题思路和素材)
  • 决策树(部分)
  • Ubuntu 22 安装 Apache Doris 3.0.3 笔记
  • (十五)JavaWeb后端开发——异常处理/AOP面向切面编程
  • 六、SpringMVC的视图
  • C++学习笔记----10、模块、头文件及各种主题(一)---- 模块(5)
  • React 入门课程 - 使用CDN编程React
  • LeetCode 234.回文链表
  • 高级java每日一道面试题-2024年10月29日-JVM篇-简述分代垃圾回收器是怎么工作的?
  • pytest简单使用
  • vue-svg-icon的安装和使用
  • Ubuntu 2004上迁移MySQL8.0的数据
  • 15分钟学 Go 第 44 天: 项目部署基础
  • 【Java学习笔记】13. I/O系统
  • 信号与噪声分析——第二节:随机变量的统计特征
  • Pr:视频效果使用详解(全集 · 2025版)
  • flutter鸿蒙next 使用 InheritedWidget 实现跨 Widget 传递状态
  • 【物联网技术】ESP8266 WIFI模块在AP模式下实现UDP与电脑/手机网络助手通信——UDP数据透传
  • 【数字图像处理】一篇搞定傅里叶变换
  • Git 入门篇(二)