Problem Description
You are given three strings: s1
, s2
, and s3
. In one operation you can choose one of these strings and delete its rightmost character. Note that you cannot completely empty a string. Return the minimum number of operations required to make the strings equal. If it is impossible to make them equal, return -1
.
Key Insights
- The goal is to reduce the strings to a common suffix.
- We can only delete characters from the end of the strings.
- If the characters at the beginning of any two strings differ, it is impossible to make all three strings equal.
- The solution involves finding the longest common suffix among the three strings.
Space and Time Complexity
Time Complexity: O(n) where n is the length of the shortest string among the three, since we may need to iterate through each character to find the common suffix. Space Complexity: O(1) since we are using a constant amount of space.
Solution
To solve the problem, we can use the following approach:
- Start from the end of each string and compare characters.
- Count how many characters match from the end until they differ.
- The number of characters that do not match gives us the number of deletions needed.
- Calculate the total deletions needed for all three strings to reach the common suffix.
We will utilize a simple loop to find the length of the common suffix and derive the number of operations from the lengths of the original strings.