Problem Description
You are given a string word
and a non-negative integer k
. Return the total number of substrings of word
that contain every vowel ('a', 'e', 'i', 'o', and 'u') at least once and exactly k
consonants.
Key Insights
- A substring must contain all five vowels at least once.
- The substring must contain exactly
k
consonants. - A sliding window approach can be used to efficiently explore potential substrings.
- Hash tables can be utilized to keep track of the counts of vowels and consonants in the current window.
Space and Time Complexity
Time Complexity: O(n)
Space Complexity: O(1) (for the counts of vowels and consonants)
Solution
The solution employs a sliding window technique to traverse through the string while maintaining a count of vowels and consonants in the current window. The algorithm expands the window rightwards until all vowels are included and then contracts the window from the left to maintain exactly k
consonants. Whenever the conditions are met, the number of valid substrings is incremented based on the current positions of the window.