-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathword_break_code.cpp
37 lines (36 loc) · 1.21 KB
/
word_break_code.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
// Question Link - https://leetcode.com/problems/word-break/description?envType=study-plan-v2&envId=dynamic-programming
// Solution
class Solution {
public:
vector<vector<int>> dp;
bool recursor(string& s, unordered_set<string>& dump, string make, int index)
{
if(index >= s.size() && !make.empty()) return false;
else if(index >= s.size() && make.empty()) return true;
else if(dp[make.size()][index] != -1) return dp[make.size()][index];
make += s[index];
if(dump.find(make) != dump.end())
{
bool a = recursor(s, dump, make, index+1);
string t = make;
make.clear();
bool b = recursor(s, dump, make, index+1);
make = t;
return dp[make.size()][index] = (a|b);
}
else
{
return recursor(s, dump, make, index+1);
}
}
bool wordBreak(string s, vector<string>& wordDict) {
string make="";
unordered_set<string> dump;
for(int i=0; i<wordDict.size(); i++)
{
dump.insert(wordDict[i]);
}
dp.clear(); dp.resize(s.size()+1, vector<int> (s.size()+1, -1));
return recursor(s, dump, make,0);
}
};