Problem Description
You are given an array of strings strs
, all of the same length. We may choose any deletion indices, and we delete all the characters in those indices for each string. The goal is to find the minimum possible value of deletion indices such that every string in the resulting array is in lexicographic order.
Key Insights
- The problem can be reduced to finding the longest increasing subsequence of columns based on the lexicographic order of characters.
- Each column's characters can be treated as a tuple which can be compared to other column tuples.
- The minimum number of deletions is equal to the total number of columns minus the length of the longest increasing subsequence of the column tuples.
Space and Time Complexity
Time Complexity: O(n * m^2) where n is the number of strings and m is the length of each string (columns). Space Complexity: O(m) for storing the tuples of columns.
Solution
The solution involves creating a list of tuples where each tuple represents characters from each string at a specific column. We then apply a dynamic programming approach to find the longest increasing subsequence among these tuples. The difference between the total number of columns and the length of this subsequence gives us the minimum deletions needed.