-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path140.单词拆分-ii.cpp
97 lines (90 loc) · 2.35 KB
/
140.单词拆分-ii.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
91
92
93
94
95
96
97
/*
* @lc app=leetcode.cn id=140 lang=cpp
*
* [140] 单词拆分 II
*
* https://leetcode-cn.com/problems/word-break-ii/description/
*
* algorithms
* Hard (37.28%)
* Likes: 72
* Dislikes: 0
* Total Accepted: 6.7K
* Total Submissions: 18.1K
* Testcase Example: '"catsanddog"\n["cat","cats","and","sand","dog"]'
*
* 给定一个非空字符串 s 和一个包含非空单词列表的字典
* wordDict,在字符串中增加空格来构建一个句子,使得句子中所有的单词都在词典中。返回所有这些可能的句子。
*
* 说明:
*
*
* 分隔时可以重复使用字典中的单词。
* 你可以假设字典中没有重复的单词。
*
*
* 示例 1:
*
* 输入:
* s = "catsanddog"
* wordDict = ["cat", "cats", "and", "sand", "dog"]
* 输出:
* [
* "cats and dog",
* "cat sand dog"
* ]
*
*
* 示例 2:
*
* 输入:
* s = "pineapplepenapple"
* wordDict = ["apple", "pen", "applepen", "pine", "pineapple"]
* 输出:
* [
* "pine apple pen apple",
* "pineapple pen apple",
* "pine applepen apple"
* ]
* 解释: 注意你可以重复使用字典中的单词。
*
*
* 示例 3:
*
* 输入:
* s = "catsandog"
* wordDict = ["cats", "dog", "sand", "and", "cat"]
* 输出:
* []
*
*
*/
// @lc code=start
class Solution {
public:
vector<string> wordBreak(string s, vector<string> &wordDict) {
unordered_set<string> t(wordDict.begin(), wordDict.end());
unordered_map<int, vector<string>> m;
return wordBreak2II_bt(s, t, m, 0);
}
vector<string> wordBreak2II_bt(string s, unordered_set<string> &t, unordered_map<int, vector<string>> &m, int index) {
if (m.count(index)) {
return m[index];
}
vector<string> ret;
if (index == s.size()) {
ret.emplace_back("");
} else
for (int i = index + 1; i <= s.size(); ++i) {
if (t.count(s.substr(index, i - index))) {
vector<string> tmp = wordBreak2II_bt(s, t, m, i);
for (auto &j : tmp) {
ret.push_back(s.substr(index, i - index) + (j.empty() ? "" : " ") + j);
}
}
}
m[index] = ret;
return ret;
}
};
// @lc code=end