992. Subarrays with K Different Integers
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].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].// Sliding Window
int subarraysWithAtMostKDistinct(vector<int>& A, int K) { // time: O(n); space: O(n)
int i = 0, res = 0;
unordered_map<int, int> count;
for (int j = 0; j < A.size(); ++j) {
if (!count[A[j]]++) --K;
while (K < 0) {
if (!--count[A[i++]]) ++K;
}
res += j - i + 1; // the total number of subarrays ending at j that contain at most K distinct
}
return res;
}
int subarraysWithKDistinct(vector<int>& A, int K) {
return subarraysWithAtMostKDistinct(A, K) - subarraysWithAtMostKDistinct(A, K - 1);
}Last updated