648. Replace Words
Description
In English, we have a concept called root, which can be followed by some other word to form another longer word - let's call this word successor. For example, when the root "an"
is followed by the successor word "other"
, we can form a new word "another"
.
Given a dictionary
consisting of many roots and a sentence
consisting of words separated by spaces, replace all the successors in the sentence with the root forming it. If a successor can be replaced by more than one root, replace it with the root that has the shortest length.
Return the sentence
after the replacement.
Example 1:
Input: dictionary = ["cat","bat","rat"], sentence = "the cattle was rattled by the battery" Output: "the cat was rat by the bat"
Example 2:
Input: dictionary = ["a","b","c"], sentence = "aadsfasf absbs bbab cadsfafs" Output: "a a b c"
Constraints:
1 <= dictionary.length <= 1000
1 <= dictionary[i].length <= 100
dictionary[i]
consists of only lower-case letters.1 <= sentence.length <= 106
sentence
consists of only lower-case letters and spaces.- The number of words in
sentence
is in the range[1, 1000]
- The length of each word in
sentence
is in the range[1, 1000]
- Every two consecutive words in
sentence
will be separated by exactly one space. sentence
does not have leading or trailing spaces.
Solution
replace-words.py
class TrieNode:
def __init__(self):
self.mp = [None] * 26
self.end = False
class Trie:
def __init__(self):
"""
Initialize your data structure here.
"""
self.root = TrieNode()
self.ans = collections.defaultdict(int)
def insert(self, word: str):
"""
Inserts a word into the trie.
"""
curr = self.root
n = len(word)
for i in range(n):
index = ord(word[i]) - ord('a')
if not curr.mp[index]:
curr.mp[index] = TrieNode()
curr = curr.mp[index]
curr.end = True
def search(self, word: str):
"""
Returns if the word is in the trie.
"""
curr = self.root
n = len(word)
for i in range(n):
index = ord(word[i]) - ord('a')
if not curr.mp[index]: return word
if curr.mp[index].end: return word[:i+1]
curr = curr.mp[index]
return word
class Solution:
def replaceWords(self, dictionary: List[str], sentence: str):
trie = Trie()
for word in dictionary:
trie.insert(word)
res = []
sentence = sentence.split()
for s in sentence:
res.append(trie.search(s))
return " ".join(res)