forked from zhuli19901106/leetcode-zhuli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconcatenated-words_1_AC.cpp
62 lines (55 loc) · 1.49 KB
/
concatenated-words_1_AC.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
// Brute-force DP, from Word Break
// It took me hours on this problem, I tried my best to write a solution with trie.
// But no luck.
#include <algorithm>
#include <string>
#include <unordered_set>
#include <vector>
using std::sort;
using std::string;
using std::unordered_set;
using std::vector;
bool comparator(const string &s1, const string &s2)
{
return s1.size() < s2.size();
}
class Solution {
public:
vector<string> findAllConcatenatedWordsInADict(vector<string>& words) {
sort(words.begin(), words.end(), comparator);
vector<string> res;
unordered_set<string> us;
int n = words.size();
int i;
for (i = 0; i < n; ++i) {
if (wordBreak(words[i], us)) {
res.push_back(words[i]);
} else {
us.insert(words[i]);
}
}
us.clear();
return res;
}
private:
bool wordBreak(const string &w, unordered_set<string> &us) {
int lw = w.size();
if (lw == 0 || us.empty()) {
return false;
}
vector<bool> dp(lw + 1, false);
int i, j;
dp[0] = true;
for (i = 1; i <= lw; ++i) {
for (j = i - 1; j >= 0; --j) {
if (dp[j] && us.find(w.substr(j, i - j)) != us.end()) {
dp[i] = true;
break;
}
}
}
bool res = dp[lw];
dp.clear();
return res;
}
};