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

LightOJ 1033 - Generating Palindromes 【区间DP】

时间:2015-06-10 17:27:23      阅读:112      评论:0      收藏:0      [点我收藏+]

标签:字符   代码   枚举   

题目链接:http://www.lightoj.com/volume_showproblem.php?problem=1033
题意:至少添加几个字符,能使得给定的串变为回文串。
解法:枚举起点终点,进行DP;
代码:

#include <stdio.h>
#include <ctime>
#include <math.h>
#include <limits.h>
#include <complex>
#include <string>
#include <functional>
#include <iterator>
#include <algorithm>
#include <vector>
#include <stack>
#include <queue>
#include <set>
#include <map>
#include <list>
#include <bitset>
#include <sstream>
#include <iomanip>
#include <fstream>
#include <iostream>
#include <ctime>
#include <cmath>
#include <cstring>
#include <cstdio>
#include <time.h>
#include <ctype.h>
#include <string.h>
#include <assert.h>

using namespace std;

int t;
char s[1010];
int dp[1010][1010]; 

int main()
{
    scanf("%d",&t);
    for (int ca = 1; ca <= t;ca++)
    {
        memset(dp,0,sizeof(dp));
        scanf("%s",s+1);
        int n = strlen(s+1);

        for (int i = n; i >= 1; i--)
            for (int j = i+1; j <= n; j++)
            {
                if (s[i] == s[j])
                    dp[i][j] = dp[i + 1][j - 1];
                else
                    dp[i][j] = min(dp[i+1][j],dp[i][j-1]) + 1;
            }
        printf("Case %d: %d\n",ca,dp[1][n]);
    }
    return 0;
}

LightOJ 1033 - Generating Palindromes 【区间DP】

标签:字符   代码   枚举   

原文地址:http://blog.csdn.net/u014427196/article/details/46442917

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