我是靠谱客的博主 冷静故事,最近开发中收集的这篇文章主要介绍992. Subarrays with K Different Integers - Hard,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

Given an array A of positive integers, call a (contiguous, not necessarily distinct) subarray of A good if the number of different integers in that subarray is exactly K.

(For example, [1,2,3,1,2] has 3 different integers: 12, and 3.)

Return the number of good subarrays of A.

 

Example 1:

Input: A = [1,2,1,2,3], K = 2
Output: 7
Explanation: Subarrays formed with exactly 2 different integers: [1,2], [2,1], [1,2], [2,3], [1,2,1], [2,1,2], [1,2,1,2].

Example 2:

Input: A = [1,2,1,3,4], K = 3
Output: 3
Explanation: Subarrays formed with exactly 3 different integers: [1,2,1,3], [2,1,3], [1,3,4].

 

Note:

  1. 1 <= A.length <= 20000
  2. 1 <= A[i] <= A.length
  3. 1 <= K <= A.length

 

sliding window

time = O(n), space = O(n)

class Solution {
    public int subarraysWithKDistinct(int[] A, int K) {
        int[] map = new int[A.length + 1];
        int slow = 0, fast = 0, counter = 0, nsub = 0, res = 0;
        while(fast < A.length) {
            map[A[fast]]++;
            if(map[A[fast]] == 1) {
                counter++;
            }
            fast++;
            
            if(counter > K) {
                map[A[slow++]]--;
                counter--;
                nsub = 0;
            }
            
            if(counter == K) {
                while(map[A[slow]] > 1) {
                    map[A[slow++]]--;
                    nsub++;
                }
                res += nsub + 1;
            }
        }
        return res;
    }
}

 

转载于:https://www.cnblogs.com/fatttcat/p/11397916.html

最后

以上就是冷静故事为你收集整理的992. Subarrays with K Different Integers - Hard的全部内容,希望文章能够帮你解决992. Subarrays with K Different Integers - Hard所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(40)

评论列表共有 0 条评论

立即
投稿
返回
顶部