140.Word-Break-II
140. Word Break II
题目地址
https://leetcode.com/problems/word-break-ii/
题目描述
Given a non-empty string s and a dictionary wordDict containing a list of non-empty words, add spaces in s to construct a sentence where each word is a valid dictionary word. Return all such possible sentences.
Note:
The same word in the dictionary may be reused multiple times in the segmentation.
You may assume the dictionary does not contain duplicate words.
Example 1:
Input:
s = "catsanddog"
wordDict = ["cat", "cats", "and", "sand", "dog"]
Output:
[
"cats and dog",
"cat sand dog"
]代码
Approach 1: Recursion with memoization
Complexity Analysis
Time complexity : O(_n^_3). Size of recursion tree can go up to n^2. The creation of list takes n time.
Space complexity : O(n^3).The depth of the recursion tree can go up to n and each activation record can contains a string list of size n.
Approach #3 Using Dynamic Programming (Time Limit Exceeded)
Complexity Analysis
Time complexity : O_(_n^3). Two loops are required to fill dp array and one loop for appending a list .
Space complexity : O(n^3). Length of dp array is n and each value of dp array contains a list of string i.e. n^2 space.
Fixed the DP solution, no "Time Limit Exceeded" :)
Approach #3 : Backtrace
Last updated
Was this helpful?