Problem Description
Given a string s, return the sum of countUniqueChars(t) for all substrings t of s, where countUniqueChars(s) returns the number of unique characters in the string s.
Key Insights
- A substring is defined as a contiguous sequence of characters within a string.
- Unique characters in a substring can be efficiently counted using a hash table or similar data structure.
- The contribution of each character to the count of unique characters can be determined by its position in the string and its occurrences.
Space and Time Complexity
Time Complexity: O(n^2) in the worst case due to generating all substrings, but can be optimized. Space Complexity: O(1) if we consider only the input and some auxiliary variables, otherwise O(1) for the hash table storing character counts.
Solution
To solve this problem, we track the contribution of each character to the total count of unique characters across all substrings. We utilize a hash table to maintain the count of characters as we iterate through each possible starting index of the substring. For each character, we calculate how many substrings it contributes to as a unique character based on its last occurrence and update the total accordingly.