码迷,mamicode.com
首页 > 其他好文 > 详细

Leetcode-Word Break II

时间:2014-12-12 06:38:58      阅读:242      评论:0      收藏:0      [点我收藏+]

标签:io   ar   os   sp   for   on   cti   ad   amp   

Given a string s and a dictionary of words dict, add spaces in s to construct a sentence where each word is a valid dictionary word.

Return all such possible sentences.

For example, given
s = "catsanddog",
dict = ["cat", "cats", "and", "sand", "dog"].

A solution is ["cats and dog", "cat sand dog"].

Analysis:

Use DP. d[i] = sum of (d[j]*s[j...i]) for j=i-1...0

Leetcode-Word Break II

标签:io   ar   os   sp   for   on   cti   ad   amp   

原文地址:http://www.cnblogs.com/lishiblog/p/4158879.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!