本题是完全背包问题,由于可以重复使用,因此需要先遍历背包再遍历物品,dp[i]的含义是在长度为i处能否从数组中找到元素组成。
具体代码如下:
cpp
class Solution {
public:
bool wordBreak(string s, vector<string>& wordDict) {
vector<bool>dp(s.length()+1,false);
unordered_set<string>wordset(wordDict.begin(),wordDict.end());
dp[0]=true;
for(int i=1;i<=s.length();i++)
{
for(int j=0;j<i;j++)
{
string word=s.substr(j,i-j);
if(wordset.find(word)!=wordset.end()&&dp[j]==true)
{
dp[i]=true;
}
}
}
return dp[s.length()];
}
};