-
Notifications
You must be signed in to change notification settings - Fork 66
/
Copy pathPalindromePartitioningII.cpp
53 lines (43 loc) · 1.09 KB
/
PalindromePartitioningII.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
/*
Given a string s, partition s such that every substring of the partition is a palindrome.
Return the minimum cuts needed for a palindrome partitioning of s.
Example :
Given
s = "aab",
Return 1 since the palindrome partitioning ["aa","b"] could be produced using 1 cut.
LINK: https://www.interviewbit.com/problems/palindrome-partitioning-ii/
*/
int Solution::minCut(string A)
{
int n = A.length();
if(n==0)
return 0;
int dp[n];
bool palin[n][n];
for(int i=0;i<n;i++)
palin[i][i] = true;
for(int len = 2;len<=n;len++)
{
for(int i=0;i<n-len+1;i++)
{
int j = i+len-1;
if(len == 2)
palin[i][j] = (A[i]==A[j]);
else
palin[i][j] = (A[i]==A[j]) && palin[i+1][j-1];
}
}
for(int i=0;i<n;i++)
{
if(palin[0][i])
dp[i] = 0;
else
{
dp[i] = INT_MAX;
for(int j=1;j<=i;j++)
if(palin[j][i] && dp[i]>(dp[j-1]+1))
dp[i] = dp[j-1] + 1;
}
}
return dp[n-1];
}