-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path139.单词拆分.cpp
65 lines (56 loc) · 1.74 KB
/
139.单词拆分.cpp
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
/*
* @lc app=leetcode.cn id=139 lang=cpp
*
* [139] 单词拆分
*/
// @lc code=start
#include<iostream>
#include<string>
#include<vector>
#include<set>
using namespace std;
class Solution {
public:
bool wordBreak(string s, vector<string>& wordDict){
set<string> wdS;
for(int i=0;i<wordDict.size();++i){
wdS.insert(wordDict[i]);
}
int len = s.size();
vector<int> dp(len+1, false);
dp[0] = true;
for(int i=1;i<=len;++i){
for(int j = 0;j < i;++j){
if(dp[j]&&wdS.find(s.substr(j, i-j))!=wdS.end()){
dp[i]=true;
break;
}
}
}
return dp[len];
}
// 这为啥不行呢?
// bool wordBreak(string s, vector<string>& wordDict) {
// int len = s.size();
// if(len<=0)return true;
// vector<int> dp(len+1, false);
// dp[0] = true;
// for(int i=1;i<=len;++i)
// {
// for(int j=0;j<wordDict.size();++j)
// {
// if(i-(int)wordDict[j].size()>=0)
// {
// // cout<<i<<endl;
// // cout<<s.substr(i-(int)wordDict[j].size(),(int) wordDict[j].size())<<endl;
// // cout<<(s.substr(i-(int)wordDict[j].size(),(int) wordDict[j].size()) == wordDict[j])<<endl;
// // cout<<dp[i-(int)wordDict[j].size()]<<endl;
// dp[i] = (s.substr(i-(int)wordDict[j].size(),(int) wordDict[j].size()) == wordDict[j]) && dp[i-(int)wordDict[j].size()];
// // cout<<dp[i]<<endl;
// }
// }
// }
// return dp[len];
// }
};
// @lc code=end