Problem Description
You are given a string s and a positive integer k. A string is beautiful if the number of vowels equals the number of consonants, and the product of vowels and consonants is divisible by k. Your task is to return the number of non-empty beautiful substrings in the given string s.
Key Insights
- A substring is contiguous, so we can use a sliding window approach.
- We need to maintain a count of vowels and consonants as we iterate through the string.
- The conditions for a beautiful substring require checking both the equality of vowels and consonants and the divisibility of their product by k.
- A hash map can be useful to keep track of the counts of (vowels - consonants) and their occurrences to efficiently find substrings that meet the conditions.
Space and Time Complexity
Time Complexity: O(n), where n is the length of the string s.
Space Complexity: O(n), for storing the counts in a hash map.
Solution
To solve the problem, we can utilize a two-pointer (or sliding window) technique along with a hash map to count the occurrences of (vowels - consonants). As we iterate through the string, we update our counts for vowels and consonants. For each substring, we check if the conditions for being beautiful are met, and if so, we increment our result count accordingly.