LightOJ 1033 - Generating Palindromes

http://lightoj.com/volume_showproblem.php?problem=1033

By definition palindrome is a string which is not changed when reversed. "MADAM" is a nice example of palindrome. It is an easy job to test whether a given string is a palindrome or not. But it may not be so easy to generate a palindrome.

Here we will make a palindrome generator which will take an input string and return a palindrome. You can easily verify that for a string of length n, no more than (n - 1)characters are required to make it a palindrome. Consider "abcd" and its palindrome "abcdcba" or "abc" and its palindrome "abcba". But life is not so easy for programmers!! We always want optimal cost. And you have to find the minimum number of characters required to make a given string to a palindrome if you are only allowed to insert characters at any position of the string.

Input

Input starts with an integer T (≤ 200), denoting the number of test cases.

Each case contains a string of lowercase letters denoting the string for which we want to generate a palindrome. You may safely assume that the length of the string will be positive and no more than 100.

Output

For each case, print the case number and the minimum number of characters required to make string to a palindrome.

Sample Input

Output for Sample Input

6

abcd

aaaa

abc

aab

abababaabababa

pqrsabcdpqrs

Case 1: 3

Case 2: 0

Case 3: 2

Case 4: 1

Case 5: 0

Case 6: 9

 


PROBLEM SETTER: MD. KAMRUZZAMAN

SPECIAL THANKS: JANE ALAM JAN (MODIFIED DESCRIPTION, DATASET)

注意马拉车是求的连续的子序列,此题不适用。

#include<bits/stdc++.h>
# define ll long long
using namespace std;
const ll maxn=665;
int dp[maxn][maxn];
char s1[maxn],s2[maxn];
int Get(char *a,char *b)
{
    int len=strlen(a);
    for(int i=1;i<=len;i++)
    {
        for(int j=1;j<=len;j++)
        {
            if(a[i-1]==b[j-1])
            {
                dp[i][j]=dp[i-1][j-1]+1;//////////////-----
            }
            else
            {
                dp[i][j]=max(dp[i-1][j],dp[i][j-1]);//-----//
            }
        }
    }
    return dp[len][len];
}
int main()
{
    int t;
    cin>>t;
    int num=0;
    while(t--)
    {
        scanf("%s",s1);
        int len=strlen(s1);
        for(int i=len-1,j=0;i>=0;i--,j++)
        {
            s2[j]=s1[i];
        }
        printf("Case %d: %d\n",++num,len-Get(s1,s2));
        //cout<<len-Get(s1,s2)<<endl;
    }
}

猜你喜欢

转载自blog.csdn.net/lanshan1111/article/details/89058164