给定一个非空字符串 s 和一个包含非空单词列表的字典 wordDict,判定 s 是否可以被空格拆分为一个或多个在字典中出现的单词。
说明:
拆分时可以重复使用字典中的单词。
你可以假设字典中没有重复的单词。
示例 1:
输入: s = “leetcode”, wordDict = [“leet”, “code”]
输出: true
碰到字符串分解问题,容易想到用递归做,但很容易超时,考虑使用dp。建立数组dp,dp[i]表示前i个,即从第0到第i-1构成的字符串可以被拆分,状态转移方程为:
dp[i] = dp[j] && wordDict.contains(s.substring(j,i)),(j < i),可使用List记录可被拆分的位置
class Solution {
public boolean wordBreak(String s, List<String> wordDict) {
if (s == null || s.equals(""))
return false;
boolean[] dp = new boolean[s.length()+1];
List<Integer> t = new ArrayList<Integer>();
t.add(0);
dp[0] = true;
for (int i = 1; i <= s.length(); i++) {
for (int pos : t) {
if (wordDict.contains(s.substring(pos,i))){
dp[i] = true;
}
}
if (dp[i])
t.add(i);
}
return dp[s.length()];
}
}