zoukankan      html  css  js  c++  java
  • POJ1159——Palindrome(最长公共子序列+滚动数组)

    Palindrome

    Description
    A palindrome is a symmetrical string, that is, a string read identically from left to right as well as from right to left. You are to write a program which, given a string, determines the minimal number of characters to be inserted into the string in order to obtain a palindrome.
    As an example, by inserting 2 characters, the string "Ab3bd" can be transformed into a palindrome ("dAb3bAd" or "Adb3bdA"). However, inserting fewer than 2 characters does not produce a palindrome.
    Input
    Your program is to read from standard input. The first line contains one integer: the length of the input string N, 3 <= N <= 5000. The second line contains one string with length N. The string is formed from uppercase letters from 'A' to 'Z', lowercase letters from 'a' to 'z' and digits from '0' to '9'. Uppercase and lowercase letters are to be considered distinct.
    Output
    Your program is to write to standard output. The first line contains one integer, which is the desired minimal number.
    Sample Input
    5
    Ab3bd
    Sample Output
    2

    题目大意:

        给定一个字符串,判断最少需要添加几个字符使其变成回文。

    解题思路:

        回文定义:一个字符串与该字符串的逆序相同。

        则显然该题求得是:字符串长度-字符串与其逆序的最长公共子序列长度

        字符串有5000位,若使用一般的LCS需要开5000*5000的数组。(数组过大)

        所以需要使用滚动数组。(LCS每行更新的时候只需要根据上一行的数据即可) 只需要开辟2*5000的数组。 ^_^

        LCS的dp方程:dp[i][j]=max( dp[i-1][j-1] + (a[i]==b[j]) , max( dp[i-1][j] , dp[i][j-1] ) )

    Code:

     1 /*************************************************************************
     2     > File Name: poj1159.cpp
     3     > Author: Enumz
     4     > Mail: 369372123@qq.com
     5     > Created Time: 2014年10月27日 星期一 20时44分15秒
     6  ************************************************************************/
     7 
     8 #include<iostream>
     9 #include<cstdio>
    10 #include<cstdlib>
    11 #include<string>
    12 #include<cstring>
    13 #include<list>
    14 #include<queue>
    15 #include<stack>
    16 #include<map>
    17 #include<set>
    18 #include<algorithm>
    19 #include<cmath>
    20 #include<bitset>
    21 #include<climits>
    22 #define MAXN 5001
    23 using namespace std;
    24 char a[MAXN], b[MAXN];
    25 int dp[2][MAXN];
    26 int main()
    27 {
    28     int N;
    29     while(cin>>N)
    30     {
    31         for (int i=1;i<=N;i++)
    32         {
    33             scanf("%c",&a[i]);
    34             b[N-i+1]=a[i];
    35         }
    36         memset(dp,0,sizeof(dp));
    37         for (int i=1;i<=N;i++)
    38         {
    39             dp[1][0]=dp[0][0];
    40             for (int j=1;j<=N;j++)
    41             {
    42                 int tmp=max(dp[1][j-1],dp[0][j]);
    43                 if (a[j]==b[i])
    44                     tmp=max(tmp,dp[0][j-1]+1);
    45                 dp[1][j]=tmp;
    46             }
    47             for (int i=0;i<=N;i++)
    48                 dp[0][i]=dp[1][i];
    49         }
    50         cout<<dp[N][N]<<endl;
    51     }
    52     return 0;
    53 }
  • 相关阅读:
    block的使用
    控制器的多种创建方式
    指针函数和函数指针
    UIScrollView实现图片轮播器及其无限循环效果
    如何按顺序执行两个动画
    代理、通知、KVO的应用
    CAlayer层的属性
    UIView的autoresizingMask和autoresizesSubviews属性的剖析
    面向对象编程思想(OOP)总结
    scala中闭包的使用
  • 原文地址:https://www.cnblogs.com/Enumz/p/4060335.html
Copyright © 2011-2022 走看看