-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWord_Break.cpp
90 lines (89 loc) · 2.24 KB
/
Word_Break.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
/*
Problem Link - https://www.interviewbit.com/problems/word-break/
//// This solution gives MLE in interview bit......
unordered_map<string, bool> dp;
bool partitiondp(string a, unordered_set<string> st, int starer, int ender)
{
if(a.size()==0) return true;
string filler = to_string(starer)+" "+to_string(ender);
if(dp.find(filler) != dp.end()) return dp[filler];
for(int i=1; i<=a.size(); i++)
{
string sub = a.substr(0,i);
string part = a.substr(i);
string finer = to_string(0)+" "+to_string(i);
if(st.find(sub) != st.end())
{
dp[finer] = true;
}
else dp[finer]=false;
if((st.find(sub) != st.end()) && partitiondp(part, st, i, ender-i)) return dp[filler] = true;
}
return dp[filler] = false;
}
int Solution::wordBreak(string A, vector<string> &B) {
int size = A.size();
unordered_set<string> st;
for(int i=0; i<B.size(); i++)
{
st.insert(B[i]);
}
dp.clear();
int n=A.size();
return partitiondp(A, st, 0, n);
}
Accepted solution on interview bit...........
unordered_set<string> dict;
vector<bool> dp;
int topdown(string A)
{
dp[A.size()] = 1;
for(int i=A.size()-1; i>=0; i--)
{
string wrd = "";
for(int j=i; j<A.size(); j++)
{
if(dp[i]) break;
wrd+=A[j];
if(dict.find(wrd) != dict.end()) dp[i] = dp[j+1];
}
}
return dp[0]==1;
}
int Solution::wordBreak(string A, vector<string> &B) {
dict.clear();
dp.clear();
dp.resize(A.size() + 1, 0);
for (auto it : B) dict.insert(it);
return topdown(A);
}
*/
#include <bits/stdc++.h>
using namespace std;
unordered_set<string> dict;
vector<bool> dp;
int topdown(string A)
{
dp[A.size()] = 1;
for(int i=A.size()-1; i>=0; i--)
{
string wrd = "";
for(int j=i; j<A.size(); j++)
{
if(dp[i]) break;
wrd+=A[j];
if(dict.find(wrd) != dict.end()) dp[i] = dp[j+1];
}
}
return dp[0]==1;
}
int main()
{
string A = "myinterviewtrainer";
vector<string> B = {"my", "interview", "trainer"};
dict.clear();
dp.clear();
dp.resize(A.size() + 1, 0);
for (auto it : B) dict.insert(it);
return topdown(A);
}