zoukankan      html  css  js  c++  java
  • poj 1159 -- Palindrome

    Palindrome
     
    Time Limit: 3000MS   Memory Limit: 65536K
    Total Submissions: 53250   Accepted: 18396

    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

    题目链接:Palindrome

    思路:简单dp。头尾来一次最长公共子序列。用长度n-最长公共子序列即为答案。

     1 /*======================================================================
     2  *           Author :   kevin
     3  *         Filename :   Palindrome.cpp
     4  *       Creat time :   2014-09-25 10:31
     5  *      Description :
     6 ========================================================================*/
     7 #include <iostream>
     8 #include <algorithm>
     9 #include <cstdio>
    10 #include <cstring>
    11 #include <queue>
    12 #include <cmath>
    13 #define clr(a,b) memset(a,b,sizeof(a))
    14 #define M 5005
    15 using namespace std;
    16 char str1[M];
    17 short int dp[M][M];
    18 int main(int argc,char *argv[])
    19 {
    20     int n;
    21     while(scanf("%d",&n) != EOF){
    22         scanf("%s",str1);
    23         for(int i = 1; i <= n; i++){
    24             for(int j = 1; j <= n; j++){
    25                 if(str1[i-1] == str1[n-j]){
    26                     dp[i][j] = dp[i-1][j-1] + 1;
    27                 }
    28                 else{
    29                     dp[i][j] = max(dp[i-1][j],dp[i][j-1]);
    30                 }
    31             }
    32         }
    33         printf("%d
    ",n - dp[n][n]);
    34     }
    35     return 0;
    36 }
    View Code
  • 相关阅读:
    1-Java类结构和main函数
    0-java概述
    2-python元组和列表
    SSH密码暴力破解及防御实战----防
    SQL注入攻击及防御详解
    XSS跨站攻防安全
    文件包含渗透----当我们无法进行上传渗透时另一种黑客攻击
    jspgou商城部署时报错:Could not open Hibernate Session for transaction; nested exception is org.hibernate.ex
    上传漏洞----看完之后你也是黑客(中国菜刀和kali)
    部署jenkins服务器出现Please wait while Jenkins is getting ready to work ...一直进不去该怎么办?
  • 原文地址:https://www.cnblogs.com/ubuntu-kevin/p/3992480.html
Copyright © 2011-2022 走看看