-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpalindrome-partitioning.cpp
74 lines (67 loc) · 1.7 KB
/
palindrome-partitioning.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
65
66
67
68
69
70
71
72
73
74
// https://leetcode.com/problems/palindrome-partitioning/
// Backtracking
class Solution
{
public:
vector<vector<string>> partition(string s)
{
vector<vector<string>> result;
vector<string> currentList;
dfs(result, s, 0, currentList);
return result;
}
void dfs(vector<vector<string>> &result, string &s, int start, vector<string> ¤tList)
{
if (start >= s.length())
result.push_back(currentList);
for (int end = start; end < s.length(); end++)
{
if (isPalindrome(s, start, end))
{
// add current substring in the currentList
currentList.push_back(s.substr(start, end - start + 1));
dfs(result, s, end + 1, currentList);
// backtrack and remove the current substring from currentList
currentList.pop_back();
}
}
}
bool isPalindrome(string &s, int low, int high)
{
while (low < high)
{
if (s[low++] != s[high--])
return false;
}
return true;
}
};
// Backtracking with Dynamic Programming
class Solution
{
public:
vector<vector<string>> partition(string s)
{
int len = s.length();
vector<vector<bool>> dp(len, vector<bool>(len, false));
vector<vector<string>> result;
vector<string> currentList;
dfs(result, s, 0, currentList, dp);
return result;
}
void dfs(vector<vector<string>> &result, string &s, int start, vector<string> ¤tList, vector<vector<bool>> &dp)
{
if (start >= s.length())
result.push_back(currentList);
for (int end = start; end < s.length(); end++)
{
if (s[start] == s[end] && (end - start <= 2 || dp[start + 1][end - 1]))
{
dp[start][end] = true;
currentList.push_back(s.substr(start, end - start + 1));
dfs(result, s, end + 1, currentList, dp);
currentList.pop_back();
}
}
}
};