2384. Largest Palindromic Number - Detailed Explanation
Problem Statement
Description:
Given a string num
consisting of digits, rearrange and choose some of the digits (if necessary) to form the largest palindromic number. The resulting number should not have extra leading zeros unless the number is exactly "0"
.
Examples:
Example 1:
- Input:
"444947137"
- Output:
"7449447"
- Explanation:
Count the occurrences of each digit. The best palindrome is formed by pairing digits (from highest to lowest) and possibly using one digit in the center. Here, by choosing two 7's, two 4's, two 9's, and one 1 or 3 for the center, the optimal arrangement results in"7449447"
.
Example 2:
- Input:
"00009"
- Output:
"9"
- Explanation:
Although there are several zeros, using them would create leading zeros. The largest valid palindrome is simply"9"
.
Example 3:
- Input:
"12321"
- Output:
"32123"
- Explanation:
The available digits can be rearranged. However, note that the answer must be a palindrome. One optimal solution is"32123"
, where the left half is"32"
, the middle digit is"1"
, and the right half is the reverse"23"
. (Depending on the digits available, multiple palindromic arrangements might exist, but the goal is to form the numerically largest one.)
Constraints:
- 1 ≤ num.length ≤ 10⁵
num
consists only of digits from'0'
to'9'
.
Hints
-
Digit Frequency:
Start by counting how many times each digit appears. This will help you decide which digits can form pairs for the left and right halves of the palindrome. -
Choosing the Center:
A palindrome can have a center digit (if the total number of occurrences of that digit is odd). For the largest palindrome, consider using the highest digit available that has an odd frequency as the center. -
Pairing Digits:
To maximize the numeric value, try to use as many of the higher digits as possible in the outer pairs. Remember, when forming the left half, arrange the digits in descending order.
Approach Overview
Brute Force Approach
- Idea:
Generate all possible rearrangements of the digits, check which rearrangements form a palindrome, and then select the largest one. - Drawbacks:
This method quickly becomes infeasible as the length of the input increases due to the factorial growth of permutations. - Conclusion:
Not practical for inputs with even moderate length.
Optimal Approach Using Frequency Count
-
Idea:
-
Step 1: Count the frequency of each digit (0 through 9).
-
Step 2: Form pairs from the available digits. For each digit from 9 down to 0, use as many pairs as possible (i.e.,
frequency // 2
). -
Step 3: Check for any leftover digit (with an odd frequency) that can be used as the center. Always choose the highest available digit for the center.
-
Step 4: Build the left half of the palindrome by appending each digit (the number of times equal to the pair count) in descending order. The right half is simply the reverse of the left half.
-
Step 5: Combine the left half, center (if any), and right half to form the final palindromic number.
-
-
Example Walkthrough:
Consider"444947137"
. Count the digits and see that:-
Digit 9 appears once (cannot form a pair, but might be used as a center if no higher digit qualifies).
-
Digit 7 appears twice.
-
Digit 4 appears four times.
-
Digits 1 and 3 appear once each.
Use the pairs for 7 and 4, and then choose the best candidate for the center (here, choosing 9 or 7 could be possible, but the algorithm will ensure the final number is maximized by taking the highest odd available). Arrange the left half in descending order (e.g.,
"7449"
might be a part) and mirror it. -
-
Time Complexity: O(n + k) where n is the length of the input and k is the number of digits (constant 10)
-
Space Complexity: O(1) for the digit frequency array and additional strings.
Code Implementation
Python Code
Java Code
Complexity Analysis
-
Time Complexity:
-
Counting the frequency takes O(n), where n is the length of the string.
-
Building the left half and constructing the final palindrome takes constant time relative to the number of digits (only 10 digits are possible).
-
Overall: O(n).
-
-
Space Complexity:
-
We use an array of size 10 and extra strings to build the result.
-
Overall: O(n) for the output string in the worst case.
-
Step-by-Step Walkthrough and Visual Example
Consider the input "444947137"
:
-
Count Digit Frequencies:
- Frequency array (from 0 to 9):
[0, 1, 0, 1, 4, 0, 0, 2, 0, 1]
(Digit 4 appears 4 times, 7 appears 2 times, etc.)
- Frequency array (from 0 to 9):
-
Building the Left Half:
- Start from digit 9: frequency = 1, cannot form a pair → candidate for center (but we may find a higher center later if available).
- Digit 8: frequency = 0 → skip.
- Digit 7: frequency = 2, forms 1 pair → add
"7"
to left half. - Digit 6 to 5: skip.
- Digit 4: frequency = 4, forms 2 pairs → add
"44"
to left half. - Continue downwards; the left half becomes
"7" + "44"
(ordered from higher to lower as we are iterating from 9 to 0).
-
Choosing the Center:
- Among the digits with odd counts, we have candidates like 9 (from digit 9) and possibly others. We select the highest digit (in this case, 9 would be chosen if no better candidate is found later, but the process ensures that the maximum possible center digit is selected).
-
Constructing the Palindrome:
- Left half (in descending order): e.g.,
"744"
. - Right half: reverse of left half →
"447"
. - If center =
"9"
, then the full palindrome is"744" + "9" + "447"
. - However, by comparing options and ensuring maximum value, the algorithm might adjust center selection appropriately (in our sample expected output, the final palindrome is
"7449447"
).
- Left half (in descending order): e.g.,
-
Final Check for Leading Zeros:
- If the left half is empty or starts with
'0'
, the answer is"0"
.
- If the left half is empty or starts with
Common Mistakes & Edge Cases
-
Common Mistakes:
- Not handling the case when all digits are zero, which should return
"0"
rather than a string with multiple zeros. - Forgetting to discard extra leading zeros when no significant digit is available.
- Not choosing the highest possible digit for the center if more than one candidate exists.
- Not handling the case when all digits are zero, which should return
-
Edge Cases:
- Input with only one digit.
- Input where all digits are zero (e.g.,
"0000"
should return"0"
). - Input where only one digit can form a valid palindrome (e.g.,
"00009"
should return"9"
).
Alternative Variations & Related Problems
-
Alternative Variations:
- Constructing the Smallest Palindromic Number:
Instead of the largest, try forming the smallest palindromic number given similar constraints. - Using All Digits Without Discarding:
Form a palindrome by reordering the digits without removing any, if possible.
- Constructing the Smallest Palindromic Number:
-
Related Problems for Further Practice:
GET YOUR FREE
Coding Questions Catalog
