139. Word Break
文章目录
problem
Given a non-empty string s and a dictionary wordDict containing a list of non-empty words, determine if s can be segmented into a space-separated sequence of one or more dictionary words.
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 = “leetcode”, wordDict = [“leet”, “code”] Output: true Explanation: Return true because “leetcode” can be segmented as “leet code”.
Example 2:
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:
Input: s = “catsandog”, wordDict = [“cats”, “dog”, “sand”, “and”, “cat”] Output: false
也就是说,给定一个字符串A,和一个字符串数组B,判断A能不能由B中的字符串组成。
solution
|
|
第一个原始的解决方案,通过扫描字符串进行递归。
|
|
第一个dp方案,关键在于使用dp数组记录状态,当0-j可以被分割,j-i也可以被分割,那么0-i就可以被分割。
|
|
一点点优化。
summary
使用dp的关键在于缓存中间的结果,减少时间复杂度。