zoukankan      html  css  js  c++  java
  • Palindrome(最长公共子序列)

    Time Limit: 3000MS   Memory Limit: 65536K
    Total Submissions: 48526   Accepted: 16674

    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

    题意:给一个字符串的长度和这个字符串s[],问将这个字符串变成回文串至少要加几个字符;

    思路:将这个字符串逆置s1[],求出s[]和s1[]的最长公共子序列的长度len,然后n-len即是要求的长度;

     1 #include<stdio.h>
     2 #include<string.h>
     3 short dp[5001][5001];
     4 int main()
     5 {
     6     int i,j,n;
     7     char s[5010],s1[5010];
     8     memset(dp,0,sizeof(dp));
     9 
    10     scanf("%d",&n);
    11     scanf("%s",s);
    12 
    13     for(int i = 0; i < n; i++)
    14         s1[i] = s[n-1-i];
    15     s1[n] = '';
    16 
    17     for(i = 0; i < n; i++)
    18     {
    19         for(j = 0; j < n; j++)
    20         {
    21             if(s[i] == s1[j])
    22                 dp[i+1][j+1] = dp[i][j]+1;
    23             else
    24             {
    25                 if(dp[i+1][j] > dp[i][j+1])
    26                     dp[i+1][j+1] = dp[i+1][j];
    27                 else dp[i+1][j+1] = dp[i][j+1];
    28             }
    29         }
    30     }
    31     int ans = n-dp[n][n];
    32     printf("%d
    ",ans);
    33     return 0;
    34 }
    View Code
  • 相关阅读:
    【Mocha.js 101】Mocha 入门指南
    CSS 中 Font-Family 中英文对照表
    Android Studio中找出不再使用的资源
    Java反射机制实战——字段篇
    python进阶——day02、03面向对象进阶
    python进阶_day01面对对象编程基础
    day05(文件配置命令和远程登录)
    day04(磁盘管理与目录介绍)
    day03(系统启动及常用的Linux命令的基本使用)
    day02(操作系统简介和Linux的安装与常用命令简介)
  • 原文地址:https://www.cnblogs.com/LK1994/p/3290778.html
Copyright © 2011-2022 走看看