Class Solution
java.lang.Object
g1901_2000.s1930_unique_length_3_palindromic_subsequences.Solution
1930 - Unique Length-3 Palindromic Subsequences.<p>Medium</p>
<p>Given a string <code>s</code>, return <em>the number of <strong>unique palindromes of length three</strong> that are a <strong>subsequence</strong> of</em> <code>s</code>.</p>
<p>Note that even if there are multiple ways to obtain the same subsequence, it is still only counted <strong>once</strong>.</p>
<p>A <strong>palindrome</strong> is a string that reads the same forwards and backwards.</p>
<p>A <strong>subsequence</strong> 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.</p>
<ul>
<li>For example, <code>"ace"</code> is a subsequence of <code>"abcde"</code>.</li>
</ul>
<p><strong>Example 1:</strong></p>
<p><strong>Input:</strong> s = “aabca”</p>
<p><strong>Output:</strong> 3</p>
<p><strong>Explanation:</strong> The 3 palindromic subsequences of length 3 are:</p>
<ul>
<li>
<p>“aba” (subsequence of “aabca”)</p>
</li>
<li>
<p>“aaa” (subsequence of “aabca”)</p>
</li>
<li>
<p>“aca” (subsequence of “aabca”)</p>
</li>
</ul>
<p><strong>Example 2:</strong></p>
<p><strong>Input:</strong> s = “adc”</p>
<p><strong>Output:</strong> 0</p>
<p><strong>Explanation:</strong> There are no palindromic subsequences of length 3 in “adc”.</p>
<p><strong>Example 3:</strong></p>
<p><strong>Input:</strong> s = “bbcbaba”</p>
<p><strong>Output:</strong> 4</p>
<p><strong>Explanation:</strong> The 4 palindromic subsequences of length 3 are:</p>
<ul>
<li>
<p>“bbb” (subsequence of “bbcbaba”)</p>
</li>
<li>
<p>“bcb” (subsequence of “bbcbaba”)</p>
</li>
<li>
<p>“bab” (subsequence of “bbcbaba”)</p>
</li>
<li>
<p>“aba” (subsequence of “bbcbaba”)</p>
</li>
</ul>
<p><strong>Constraints:</strong></p>
<ul>
<li><code>3 <= s.length <= 10<sup>5</sup></code></li>
<li><code>s</code> consists of only lowercase English letters.</li>
</ul>
-
Constructor Summary
Constructors -
Method Summary
-
Constructor Details
-
Solution
public Solution()
-
-
Method Details
-
countPalindromicSubsequence
-