Problem Description
Given a string s
and a string array dictionary
, return the longest string in the dictionary that can be formed by deleting some of the given string characters. If there is more than one possible result, return the longest word with the smallest lexicographical order. If there is no possible result, return the empty string.
Key Insights
- The goal is to find the longest word in the dictionary that can be formed by deleting characters from the string
s
. - A word can be formed if all its characters appear in
s
in the same order, but not necessarily consecutively. - If multiple words have the same length, the lexicographically smaller one should be chosen.
- The problem can be approached using a two-pointer technique to verify if a word can be formed from
s
.
Space and Time Complexity
Time Complexity: O(n * m), where n is the length of s
and m is the average length of the words in dictionary
.
Space Complexity: O(1), since we are only using a constant amount of extra space.
Solution
To solve this problem, we can use the two-pointer technique to check if each word in the dictionary can be formed from s
. For each word, we will iterate through s
while checking if we can match the characters of the word in order. We will keep track of the longest valid word and update it accordingly. Sorting the dictionary helps ensure that we can easily find the lexicographically smallest word in case of ties.