LeetCode 1781. Sum of Beauty of All Substrings
Input: s = "aabcb"
Output: 5
Explanation: The substrings with non-zero beauty are ["aab","aabc","aabcb","abcb","bcb"], each with beauty equal to 1.Input: s = "aabcbaa"
Output: 17Solution:
class Solution {
public:
int beautySum(string s) {
int answer = 0;
for (int i = 0; i < s.length(); i++) {
int array[26] = {0};
for (int j = i; j < s.length(); j++) {
char ch = s[j];
array[ch-'a']++;
int maximum = INT_MIN;
int minimum = INT_MAX;
int diff_chars = 0;
for (int k = 0; k < 26; k++) {
maximum = max(maximum, array[k]);
if (array[k] > 0) {
minimum = min(minimum, array[k]);
diff_chars++;
}
}
if (diff_chars >= 2) {
answer += (maximum - minimum);
}
}
}
return answer;
}
};PreviousLeetCode 1780. Check if Number is a Sum of Powers of ThreeNextLeetCode 1782. Count Pairs Of Nodes
Last updated