1930. Unique Length-3 Palindromic Subsequences - Detailed Explanation

Free Coding Questions Catalog
Boost your coding skills with our essential coding questions catalog. Take a step towards a better tech career now!

Problem Statement

Given a string s, return the number of unique palindromic subsequences of length 3 in s. A subsequence is derived from s by deleting some or no characters without changing the order of the remaining characters. A palindrome is a string that reads the same forward and backward.

Example 1

Input: s = "aabca"
Output: 3
Explanation: The unique palindromic subsequences of length 3 are "aba", "aaa", and "aca".

Example 2

Input: s = "adc"
Output: 0
Explanation: There are no palindromic subsequences of length 3.

Constraints:

  • 3 <= s.length <= 10^5
  • s consists of lowercase English letters.

Hints to Solve the Problem

  1. A length-3 palindrome has the format x_y_x, where the first and last characters are the same (x) and the middle character can be any character (y).
  2. First identify valid characters x that can serve as the outer characters of the palindrome. These would be characters that appear at least twice in s.
  3. For each such character x, look at the substring between its first and last occurrence in s. Any character y that appears in between can form a palindrome x_y_x. Using a hash set to collect these middle characters y helps track unique palindromes efficiently.

Approach 1: Brute Force (Generating All Length-3 Subsequences)

Explanation:

  • Iterate through all possible triplets of indices (i, j, k) in s with i < j < k. These represent all subsequences of length 3.
  • Check if the characters at those indices form a palindrome, i.e., s[i] == s[k]. If yes, then s[i]s[j]s[k] is a palindromic subsequence.
  • Use a set to keep track of distinct palindromic subsequences found, to ensure uniqueness.
  • Count the size of the set at the end.

This brute-force approach tries every combination and thus is very slow for large strings, but it is straightforward to implement and understand.

Python Code:

Python3
Python3

. . . .

Complexity Analysis:

  • Time Complexity: O(N³) – Three nested loops generate all combinations of three indices. This is extremely inefficient for large N (not feasible when N is up to 100,000).
  • Space Complexity: O(P) – where P is the number of unique palindromic subsequences found (at most 26*26 in the worst case, because outer letters and middle letter are each among 26 lowercase letters). Apart from the output set, the space usage is O(1).

Java Code:

Java
Java

. . . .

Approach 2: Optimized Using First and Last Occurrences (Efficient Solution)

Explanation:

Instead of brute-forcing all triplets, we can use the properties of palindromes:

  1. Choose outer character x: Iterate through each character from 'a' to 'z' (or through each unique character in s). Treat this character as the potential first and last character of a palindrome.

  2. Find first and last positions of x: Use string search to find the first occurrence (first) and the last occurrence (last) of x in s. If x doesn't appear at least twice, it can't form a length-3 palindrome, so skip it.

  3. Count unique middle characters y: Look at the substring between first+1 and last-1 (the part of s strictly between the first and last x). Collect all distinct characters in this segment — each such character can serve as a middle character y to form a palindrome x_y_x.

  4. Add to count: The number of unique palindromic subsequences with x as outer characters is exactly the number of distinct characters found in step 3. Accumulate this count for all possible x.

By focusing on first and last occurrences of each character, we efficiently gather all possible palindromes without redundant checks.

Python Code:

Python3
Python3

. . . .

Complexity Analysis:

  • Time Complexity: O(26 * N) ≈ O(N). We iterate over at most 26 characters (the lowercase English alphabet). For each character, finding first and last occurrence is O(N), and collecting middle characters is also O(N) in the worst case. This simplifies to O(26*N) which is essentially O(N). In practice, this is very efficient even for large strings (up to 100k length).
  • Space Complexity: O(1) extra space (not counting output). The set of middle characters uses at most 26 characters, and we reuse it for each outer character in sequence.

Java Code:

Java
Java

. . . .

Edge Cases

  1. No valid palindromes: s = "abc" → Output: 0 (no character appears twice, so no length-3 palindrome exists).
  2. All characters the same: s = "aaaa" → Output: 1 (only possible palindrome is "aaa" using any three of the characters).
  3. Minimum length input: s = "aba" → Output: 1 (the string itself is the only length-3 palindrome subsequence).
  • Longest Palindromic Subsequence: Find the longest palindromic subsequence in a string (dynamic programming problem).
  • Count Distinct Subsequences: Count the number of distinct subsequences in a string (a different problem that also often involves DP or combinatorics).
TAGS
leetcode
CONTRIBUTOR
Design Gurus Team
-

GET YOUR FREE

Coding Questions Catalog

Design Gurus Newsletter - Latest from our Blog
Boost your coding skills with our essential coding questions catalog.
Take a step towards a better tech career now!
Explore Answers
1642. Furthest Building You Can Reach - Detailed Explanation
Learn to solve Leetcode 1642. Furthest Building You Can Reach with multiple approaches.
How to prepare for coding interviews with no prior experience?
Can you use LeetCode on mobile?
Related Courses
Image
Grokking the Coding Interview: Patterns for Coding Questions
Grokking the Coding Interview Patterns in Java, Python, JS, C++, C#, and Go. The most comprehensive course with 476 Lessons.
Image
Grokking Modern AI Fundamentals
Master the fundamentals of AI today to lead the tech revolution of tomorrow.
Image
Grokking Data Structures & Algorithms for Coding Interviews
Unlock Coding Interview Success: Dive Deep into Data Structures and Algorithms.
Image
One-Stop Portal For Tech Interviews.
Copyright © 2025 Design Gurus, LLC. All rights reserved.
;