-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPalindrome_Partitioning_II copy.cpp
125 lines (118 loc) · 3.26 KB
/
Palindrome_Partitioning_II copy.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
#include <bits/stdc++.h>
using namespace std;
bool ispalindrome(string A, int i, int j)
{
while(i<j)
{
if(A[i]!=A[j]) return false;
i++;
j--;
}
return true;
}
int recursor(string A, int i, int j,vector<vector<int>>& dp)
{
if(i>=j) return 0;
if(ispalindrome(A,i,j)) return dp[i][j] = 0;
if(dp[i][j] != -1) return dp[i][j];
int minn = INT_MAX;
for (int k = i; k <= j-1; k++)
{
int value_a, value_b;
if(dp[i][k] != -1) value_a = dp[i][k];
else value_a = recursor(A,i,k,dp);
if(dp[k+1][j] != -1) value_b = dp[k+1][j];
else value_b = recursor(A,k+1, j, dp);
int value = value_a+value_b+1;
if(minn>value) minn = value;
}
return dp[i][j] = minn;
}
int minPartition(string A)
{
int i= 0;
int j = A.size()-1;
vector<vector<int>> dp(j+2, vector<int> (j+2, -1));
return recursor(A,i,j,dp);
}
int main()
{
string A = "ababb";
cout<<minPartition(A);
}
/*
#include <bits/stdc++.h>
using namespace std;
// Function to check if input string is palindrome or not
bool ispalindrome(string input, int start, int end)
{
// Using two pointer technique to check palindrome
while (start < end) {
if (input[start] != input[end])
return false;
start++;
end--;
}
return true;
}
// Function to find keys for the Hashmap
string convert(int a, int b)
{
return to_string(a) + "" + to_string(b);
}
// Returns the minimum number of cuts needed to partition a string
// such that every part is a palindrome
int minpalparti_memo(string input, int i, int j, unordered_map<string, int>& memo)
{
if (i > j) return 0;
// Key for the Input String
string ij = convert(i, j);
// If the no of partitions for string "ij" is already calculated
// then return the calculated value using the Hashmap
if (memo.find(ij) != memo.end()) {
return memo[ij];
}
// Every String of length 1 is a palindrome
if (i == j) {
memo[ij] = 0;
return 0;
}
if (ispalindrome(input, i, j)) {
memo[ij] = 0;
return 0;
}
int minimum = INT_MAX;
// Make a cut at every possible location starting from i to j
for (int k = i; k < j; k++) {
int left_min = INT_MAX;
int right_min = INT_MAX;
string left = convert(i, k);
string right = convert(k + 1, j);
// If left cut is found already
if (memo.find(left) != memo.end()) {
left_min = memo[left];
}
// If right cut is found already
if (memo.find(right) != memo.end()) {
right_min = memo[right];
}
// Recursively calculating for left and right strings
if (left_min == INT_MAX)
left_min = minpalparti_memo(input, i, k, memo);
if (right_min == INT_MAX)
right_min = minpalparti_memo(input, k + 1, j, memo);
// Taking minimum of all k possible cuts
minimum = min(minimum, left_min + 1 + right_min);
}
memo[ij] = minimum;
// Return the min cut value for complete string.
return memo[ij];
}
int main()
{
string input = "ababbbabbababa";
unordered_map<string, int> memo;
cout << minpalparti_memo(input, 0, input.length() - 1, memo) << endl;
return 0;
}
*/