Table of contents
Open Table of contents
Description
Given a string s
, return the number of unique palindromes of length three that are a subsequence of s
.
Note that even if there are multiple ways to obtain the same subsequence, it is still only counted once.
A palindrome is a string that reads the same forwards and backwards.
A subsequence of a string is a new string generated from the original string with some characters (can be none) deleted without changing the relative order of the remaining characters.
- For example,
"ace"
is a subsequence of"abcde"
.
Example 1:
Input: s = "aabca"
Output: 3
Explanation: The 3 palindromic subsequences of length 3 are:
- "aba" (subsequence of "aabca")
- "aaa" (subsequence of "aabca")
- "aca" (subsequence of "aabca")
Example 2:
Input: s = "adc"
Output: 0
Explanation: There are no palindromic subsequences of length 3 in "adc".
Example 3:
Input: s = "bbcbaba"
Output: 4
Explanation: The 4 palindromic subsequences of length 3 are:
- "bbb" (subsequence of "bbcbaba")
- "bcb" (subsequence of "bbcbaba")
- "bab" (subsequence of "bbcbaba")
- "aba" (subsequence of "bbcbaba")
Constraints:
3 <= s.length <= 10^5
s consists of only lowercase English letters.
Solution
Idea
We can use hash map or array to remember the first index and the last index for each letter where it appears in the string. For each of the 26 letters, we count the unique letters in between.
Complexity: Time O(n), Space O(26) O(1).
Java
class Solution {
public int countPalindromicSubsequence(String s) {
int first[] = new int[26], last[] = new int[26], res = 0;
Arrays.fill(first, Integer.MAX_VALUE);
for (int i = 0; i < s.length(); ++i) {
int id = s.charAt(i) - 'a';
first[id] = Math.min(first[id], i);
last[id] = i;
}
for (int i = 0; i < 26; ++i)
if (first[i] < last[i])
res += (int) s.substring(first[i] + 1, last[i]).chars().distinct().count();
return res;
}
}