題目連結

AC Code

 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
#ifdef LOCAL
#include <bits/stdc++.h>
using namespace std;

// tree node stuff here...
#endif

static int __initialSetup = []()
{
    std::ios::sync_with_stdio(false);
    cin.tie(NULL);
    return 0;
}
();

class Solution
{
private:
    unordered_map<string, bool> dp;
    bool dfs(string s, unordered_set<string> &dict)
    {
        // cout << s << endl;
        if (0 == (int)s.length()) {
            return true;
        }

        if (dp.find(s) != dp.end())
            return dp[s];

        string cand = "";
        for (int i = 0; i < (int)s.length(); i++) {
            cand += s[i];
            if (dict.find(cand) != dict.end()) {
                bool ret = dfs(s.substr(i + 1, s.length()), dict);
                if (ret) {
                    dp[s] = true;
                    return true;
                }
            }
        }

        dp[s] = false;
        return false;
    }

public:
    bool wordBreak(string s, vector<string> &wordDict)
    {
        unordered_set<string> dict;
        for (auto i : wordDict)
            dict.insert(i);

        return dfs(s, dict);
    }
};

#ifdef LOCAL
int main()
{
    vector<string> dict({"leet", "code"});
    cout << Solution().wordBreak("leetcode", dict) << endl;
    return 0;
}
#endif