LeetCode 2067. Number of Equal Count Substrings Solution in Java, C++, Python & More | Explanation + Code

CoderIndeed
0
2067. Number of Equal Count Substrings

Description

You are given a 0-indexed string s consisting of only lowercase English letters, and an integer count. A substring of s is said to be an equal count substring if, for each unique letter in the substring, it appears exactly count times in the substring.

Return the number of equal count substrings in s.

A substring is a contiguous non-empty sequence of characters within a string.

 

Example 1:

Input: s = "aaabcbbcc", count = 3
Output: 3
Explanation:
The substring that starts at index 0 and ends at index 2 is "aaa".
The letter 'a' in the substring appears exactly 3 times.
The substring that starts at index 3 and ends at index 8 is "bcbbcc".
The letters 'b' and 'c' in the substring appear exactly 3 times.
The substring that starts at index 0 and ends at index 8 is "aaabcbbcc".
The letters 'a', 'b', and 'c' in the substring appear exactly 3 times.

Example 2:

Input: s = "abcd", count = 2
Output: 0
Explanation:
The number of times each letter appears in s is less than count.
Therefore, no substrings in s are equal count substrings, so return 0.

Example 3:

Input: s = "a", count = 5
Output: 0
Explanation:
The number of times each letter appears in s is less than count.
Therefore, no substrings in s are equal count substrings, so return 0

 

Constraints:

  • 1 <= s.length <= 3 * 104
  • 1 <= count <= 3 * 104
  • s consists only of lowercase English letters.

Solutions

Solution 1: Enumeration + Sliding Window

We can enumerate the number of types of letters in the substring within the range of [1..26], then the length of the substring is i × count.

Next, we take the current substring length as the size of the window, count the number of types of letters in the window size that are equal to count, and record it in t. If i = t at this time, it means that the number of letters in the current window are all count, then we can increment the answer by one.

The time complexity is O(n × C), and the space complexity is O(C). Where n is the length of the string s, and C is the number of types of letters, in this problem C = 26.

PythonJavaC++GoTypeScriptJavaScript
class Solution: def equalCountSubstrings(self, s: str, count: int) -> int: ans = 0 for i in range(1, 27): k = i * count if k > len(s): break cnt = Counter() t = 0 for j, c in enumerate(s): cnt[c] += 1 t += cnt[c] == count t -= cnt[c] == count + 1 if j >= k: cnt[s[j - k]] -= 1 t += cnt[s[j - k]] == count t -= cnt[s[j - k]] == count - 1 ans += i == t return ans(code-box)

Post a Comment

0Comments

Post a Comment (0)

#buttons=(Accept !) #days=(20)

Our website uses cookies to enhance your experience. Check Now
Accept !