-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathm3306.py
41 lines (34 loc) · 1.7 KB
/
m3306.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
class Solution:
def countOfSubstrings(self, word: str, k: int) -> int:
vows = set('aeiou')
conses = set(ascii_letters) - vows
output = 0 # count of the num of substrings
consonant_cnt = 0 # num of consants in current str
extra_vowels_on_left = 0 # how many vowels on left side of
# string that aren't required (i.e.
# we can choose to include them
# or exclude them)
indices = deque() # Deque to keep track of leftmost required char
vowels = {} # Tracks right-most occurance of vowel
for i, c in enumerate(word) :
if c in vows :
vowels[c] = i
else :
consonant_cnt += 1
indices.appendleft((i, c))
# Consonant count must match exactly
while indices and consonant_cnt > k :
indx_popped, popped = indices.pop()
if popped in conses :
consonant_cnt -= 1
elif popped in vows and vowels[popped] == indx_popped :
vowels.pop(popped)
extra_vowels_on_left = 0
# Remove unnecessary vowels
while indices and indices[-1][1] in vows and indices[-1][0] != vowels[indices[-1][1]] :
extra_vowels_on_left += 1
indices.pop()
# If extra vowels, we can choose to add x number of vowels to create a new string
if indices and consonant_cnt == k and len(vowels) == 5 :
output += 1 + extra_vowels_on_left
return output