美文网首页
leetcode140 单词拆分II

leetcode140 单词拆分II

作者: 奥利奥蘸墨水 | 来源:发表于2020-01-03 22:08 被阅读0次

题目

给定一个非空字符串 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"]
输出:
[]

分析

先使用139题的方法判断是否可达,可达就用DFS进行搜索。

代码

class Solution {
public:
    vector<vector<int>> dp;
    vector<string> res;

    vector<string> wordBreak(string s, vector<string>& words) {        

        if (wordBreak_help(s, words)){
            dfs(s, "", -1);
        }
        return res;
    }

    void dfs(string s, string str, int start){

        if (start == s.size() - 1){
            res.push_back(str);
            return;
        }

        for (int i = start + 1; i < dp[start + 1].size(); i++){
            if (start + 1 < s.size() && dp[start + 1][i] == 1){
                string next_str;
                if (start + 1 == 0){
                    next_str = str + s.substr(start + 1, i - start);
                }else{
                    next_str = str + " " + s.substr(start + 1, i - start);
                }
                dfs(s, next_str, i);
            }
        }

        return;
    }

    bool wordBreak_help(string s, vector<string>& words) {

        set<string> st;
        for (auto w : words){
            st.insert(w);
        }

        int len = s.size();

        dp = vector<vector<int>>(len, vector<int>(len, 0));
        vector<int> this_dp(len, 0);

        for (int i = 0; i < len; i++){
            for (int l = 1; i + l - 1 < len; l++){

                int j = i + l - 1;

                string str = s.substr(i, l);

                if (st.count(str) != 0){
                    dp[i][j] = 1;           
                    if (i == 0 || i - 1 >= 0 && this_dp[i - 1] == 1){
                        this_dp[j] = 1;
                    }
                }
            }
        }

        return this_dp[len - 1] == 1 ? true : false;
    }
};

相关文章

  • leetcode140 单词拆分II

    题目 给定一个非空字符串 s 和一个包含非空单词列表的字典 wordDict,在字符串中增加空格来构建一个句子,使...

  • LeetCode-140-单词拆分 II

    LeetCode-140-单词拆分 II 140. 单词拆分 II[https://leetcode-cn.com...

  • 单词拆分 II

    ?xml version="1.0" encoding="UTF-8"? 欢迎关注本人的微信公众号AI_Engin...

  • 140. 单词拆分 II

    140. 单词拆分 II[https://leetcode-cn.com/problems/word-break-...

  • leetcode 单词拆分 II python

    把子字符串对应的分解方法都保存下来时间复杂度还是高,贴出来记录一下

  • python实现leetcode之140. 单词拆分 II

    解题思路 动态规划dp[i]表示到i为止有哪些切分方式 140. 单词拆分 II[https://leetcode...

  • LintCode 582. 单词拆分II

    题目描述 给一字串s和单词的字典dict,在字串中增加空格来构建一个句子,并且所有单词都来自字典。 返回所有有可能...

  • LeetCode-140-单词拆分 II

    原题链接: https://leetcode-cn.com/problems/word-break-ii/[htt...

  • 力扣 140 单词拆分 II

    题意:给定一个字符串和一个字典,返回可以用字典拼接的所有字符串 思路:用set记录字典的单词,用list arra...

  • 每日一题之单词拆分II

    题目140:单词拆分II 给定一个非空字符串 s 和一个包含非空单词列表的字典 wordDict,在字符串中增加空...

网友评论

      本文标题:leetcode140 单词拆分II

      本文链接:https://www.haomeiwen.com/subject/nwvtactx.html