-
Notifications
You must be signed in to change notification settings - Fork 66
/
Copy pathWordBreak.cpp
52 lines (39 loc) · 1.08 KB
/
WordBreak.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
/*
Given a string s and a dictionary of words dict, determine if s can be segmented into a space-separated sequence of one or more dictionary words.
For example, given
s = "myinterviewtrainer",
dict = ["trainer", "my", "interview"].
Return 1 ( corresponding to true ) because "myinterviewtrainer" can be segmented as "my interview trainer".
Return 0 / 1 ( 0 for false, 1 for true ) for this problem
LINK: https://www.interviewbit.com/problems/word-break/
*/
vector<int> dp;
unordered_set<string> st;
int check(int ind, int n, string &s)
{
if(ind>=n)
return 1;
if(dp[ind]!=-1)
return dp[ind];
bool res = false;
string temp = "";
for(int i=ind;i<n && !res;i++)
{
temp.push_back(s[i]);
if(st.find(temp)!=st.end())
res |= check(i+1,n,s);
}
return dp[ind] = res;
}
int Solution::wordBreak(string A, vector<string> &B)
{
int n = A.length();
if(n==0)
return 0;
dp.clear();
dp.resize(n,-1);
st.clear();
for(int i=0;i<B.size();i++)
st.insert(B[i]);
return check(0,n,A);
}