> For the complete documentation index, see [llms.txt](https://hao-fu-1.gitbook.io/oj/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://hao-fu-1.gitbook.io/oj/exhaustive-search/140.-word-break-ii.md).

# 140. Word Break II

找dict中所有能拼成S的组合。找所有，DFS。遍历所有可能的划分，并用map记录下每个可能的s的答案以复用。

```cpp
/*
 * @lc app=leetcode id=140 lang=cpp
 *
 * [140] Word Break II
 */

// @lc code=start
class Solution {
    unordered_map<string, vector<string>> m;
public:
    vector<string> dfs(string s, unordered_set<string> &words) {
        if (m.count(s)) return m[s];
        vector<string> res;
        for (int i = 0; i < s.length() - 1; ++i) {
            const auto b = s.substr(i + 1);
            if (!words.count(b)) continue;
            auto l = dfs(s.substr(0, i + 1), words);
            if (!l.empty()) {
                for (const auto a : l) {
                    res.push_back(a + " " + b);
                }
            }
        }
        if (words.count(s)) res.push_back(s);
        m[s] = res;
        return res;
    }

    vector<string> wordBreak(string s, vector<string>& wordDict) {
        unordered_set<string> words(wordDict.begin(), wordDict.end());
        return dfs(s, words);
    }
};
// @lc code=end


```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://hao-fu-1.gitbook.io/oj/exhaustive-search/140.-word-break-ii.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
