Problem Description
You are given a string s containing lowercase letters and an integer k. You need to change some characters of s to other lowercase English letters, and then divide s into k non-empty disjoint substrings such that each substring is a palindrome. Return the minimal number of characters that you need to change to divide the string.
Key Insights
- A palindrome reads the same forwards and backwards.
- The problem can be approached using dynamic programming to minimize character changes.
- We can precompute the number of changes needed to make any substring a palindrome.
- The challenge is to partition the string into exactly k palindromic substrings.
Space and Time Complexity
Time Complexity: O(n^2 * k)
Space Complexity: O(n^2)
Solution
To solve this problem, we can use a dynamic programming approach. We will create a 2D array dp
where dp[i][j]
represents the minimum number of changes required to partition the substring s[0..i]
into j
palindromic substrings.
- First, we create a helper function to count the number of changes needed to make a substring a palindrome.
- We fill in the
dp
table using the results from the helper function to compute the minimum changes. - Finally, we return the value in
dp[n-1][k]
, which gives us the minimum changes for the entire string divided into k parts.