140. Word Break II

复制代码
package LeetCode_140

/**
 * 140. Word Break II
 * https://leetcode.com/problems/word-break-ii/description/
 *
 * Given a non-empty string s and a dictionary wordDict containing a list of non-empty words, add spaces in s to construct a sentence where each word is a valid dictionary word.
 * Return all such possible sentences.

Note:
The same word in the dictionary may be reused multiple times in the segmentation.
You may assume the dictionary does not contain duplicate words.

Example 1:
Input:
s = "catsanddog"
wordDict = ["cat", "cats", "and", "sand", "dog"]
Output:
[
"cats and dog",
"cat sand dog"
]
 * */
class Solution {
    fun wordBreak(s: String, wordDict: List<String>): List<String> {
        //val map = HashMap<String, String>()
        val map2 = HashMap<String, ArrayList<String>>()
        val set = HashSet<String>()
        //val result = ArrayList<String>()
        for (word in wordDict) {
            set.add(word)
        }
        return dfs2(s,set,map2)
    }

    /**
     * solution 1: recursion
     * TLE
     * */
    private fun dfs(index: Int, s: String, path: String, set: HashSet<String>, map: HashMap<String, String>, result: ArrayList<String>) {
        if (index == s.length) {
            //println("add:$path")
            result.add(path)
            return
        }
        for (i in index until s.length) {
            val word = s.substring(index, i + 1)
            if (!set.contains(word)) {
                continue
            }
            dfs(i + 1, s, path + word + " ", set, map, result)
        }
    }

    /**
     * solution 2: recursion + memorization (dp: Top-Down), Time complexity:O(2^n), Space complexity:O(n)
     * */
    private fun dfs2(s: String, set: HashSet<String>, map: HashMap<String, ArrayList<String>>):ArrayList<String>{
        if (map.contains(s)){
            return map.get(s)!!
        }
        val res = ArrayList<String>()
        if (set.contains(s)){
            res.add(s)
        }
        for (i in 1 until s.length) {
            //just like left word
            val word = s.substring(0,i)
            if (set.contains(word)){
                //s.substring(i) just like right word
                val list = dfs2(s.substring(i),set,map)
                for (str in list){
                    res.add(word+" "+str)
                }
            }
        }
        map.put(s,res)
        return res
    }
}
复制代码

 

posted @   johnny_zhao  阅读(161)  评论(0编辑  收藏  举报
编辑推荐:
· AI与.NET技术实操系列(二):开始使用ML.NET
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
· 理解Rust引用及其生命周期标识(上)
· 浏览器原生「磁吸」效果!Anchor Positioning 锚点定位神器解析
阅读排行:
· DeepSeek 开源周回顾「GitHub 热点速览」
· 物流快递公司核心技术能力-地址解析分单基础技术分享
· .NET 10首个预览版发布:重大改进与新特性概览!
· AI与.NET技术实操系列(二):开始使用ML.NET
· .NET10 - 预览版1新功能体验(一)
点击右上角即可分享
微信分享提示