Given a string s and a dictionary of strings wordDict, return true if s can be segmented into a space-separated sequence of one or more dictionary words.
Note that the same word in the dictionary may be reused multiple times in the segmentation.
Example 1:
1 2 3 4
Input: s = "leetcode", wordDict = ["leet","code"] Output: true Explanation: Return true because "leetcode" can be segmented as "leet code".
Example 2:
1 2 3 4 5
Input: s = "applepenapple", wordDict = ["apple","pen"] Output: true Explanation: Return true because "applepenapple" can be segmented as "apple pen apple". Note that you are allowed to reuse a dictionary word.
Example 3:
1 2 3
Input: s = "catsandog", wordDict = ["cats","dog","sand","and","cat"] Output: false
Constraints:
1 <= s.length <= 300
1 <= wordDict.length <= 1000
1 <= wordDict[i].length <= 20
s and wordDict[i] consist of only lowercase English letters.
defdfs(s, memo): if s in memo: return memo[s] if s in Dicts: returnTrue for i inrange( 1, len(s)+1 ): if s[:i] in Dicts and dfs(s[i:] , memo): memo[s] = True returnTrue memo[s] = False returnFalse return dfs(s, memo)
defdfs(node, string): ifnot string: returnTrue for i inrange(1, len(string) + 1): if dicts.search(string[:i]) and dfs(dicts.root, string[i:]): returnTrue returnFalse return dps(dicts.root, s)
1 2 3 4 5 6 7 8
Time Limit Exceeded 35 / 46 testcases passed Last Executed Input Use Testcase s = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaab" wordDict = ["a","aa","aaa","aaaa","aaaaa","aaaaaa","aaaaaaa","aaaaaaaa","aaaaaaaaa","aaaaaaaaaa"]
defdps(node, s): ifnot s: returnTrue if s in memo: return memo[s] for i inrange(1, len(s) + 1): if dicts.search(s[:i]) and dps(dicts.root, s[i:]): memo[s] = True returnTrue memo[s] = False returnFalse return dps(dicts.root, s)