码迷,mamicode.com
首页 > 其他好文 > 详细

uva 10739 String to Palindrome (dp)

时间:2015-04-07 10:02:16      阅读:119      评论:0      收藏:0      [点我收藏+]

标签:dp   acm   uva   

uva 10739 String to Palindrome

In this problem you are asked to convert a string into a palindrome with minimum number of operations. The operations are described below:

Here you’d have the ultimate freedom. You are allowed to:

Add any character at any position
Remove any character from any position
Replace any character at any position with another character

Every operation you do on the string would count for a unit cost. You’d have to keep that as low as possible.

For example, to convert “abccda” you would need at least two operations if we allowed you only to add characters. But when you have the option to replace any character you can do it with only one operation. We hope you’d be able to use this feature to your advantage.

Input
The input file contains several test cases. The first line of the input gives you the number of test cases, T (1≤T≤10). Then T test cases will follow, each in one line. The input for each test case consists of a string containing lower case letters only. You can safely assume that the length of this string will not exceed 1000 characters.

Output

For each set of input print the test case number first. Then print the minimum number of characters needed to turn the given string into a palindrome.

Sample Input Output for Sample Input

6

tanbirahmed

shahriarmanzoor

monirulhasan

syedmonowarhossain

sadrulhabibchowdhury

mohammadsajjadhossain

Case 1: 5

Case 2: 7

Case 3: 6

Case 4: 8

Case 5: 8

Case 6: 8

题目大意:给出一个字符串,有三种操作:增加,删除,修改。问将该字符串修改为回文字符串,需要的最少操作数。

解题思路:dp[i][j]表示区间i到j要修改为回文字符串的最少操作数。 当s[i]==s[j]时,dp[i][j]=dp[i+1][j?1];当s[i]!=s[j]时,dp[i][j]=min(dp[i+1][j],dp[i][j?1],dp[i+1][j?1])+1

dp[i + 1][j]和dp[i][j + 1]代表增加和删除,dp[i + 1][j - 1]代表修改。

#include <cstdio>
#include <cstring>
#include <algorithm>
#include <cmath>
#include <cstdlib>
#define N 1005
using namespace std;
typedef long long ll;
char s[N];
int dp[N][N];
int main() {
    int T, Case = 1;
    scanf("%d", &T);    
    while (T--) {
        scanf("%s", s);
        int len = strlen(s);
        memset(dp, 0, sizeof(dp));  
        for (int i = len - 1; i >= 0; i--) {
            for (int j = i + 1; j < len; j++) {
                if (s[i] == s[j]) dp[i][j] = dp[i + 1][j - 1];
                else {
                    dp[i][j] = min(min(dp[i + 1][j], dp[i][j - 1]), dp[i + 1][j - 1]) + 1;
                }
            }
        }
        printf("Case %d: %d\n", Case++, dp[0][len - 1]);
    }
    return 0;
}

uva 10739 String to Palindrome (dp)

标签:dp   acm   uva   

原文地址:http://blog.csdn.net/llx523113241/article/details/44904915

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!