国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁(yè) > 學(xué)院 > 開(kāi)發(fā)設(shè)計(jì) > 正文

POJ 1159 Palindrome (LCS)

2019-11-11 00:29:49
字體:
來(lái)源:轉(zhuǎn)載
供稿:網(wǎng)友

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(chǎn)’ 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

5Ab3bd

Sample Output

2

題意

給出一個(gè)字符串,問(wèn)最少添加幾個(gè)字符才能構(gòu)成一個(gè)回文串。

思路

對(duì)于這種類型的題目是有一個(gè)公式的啦!

添加的最少字符個(gè)數(shù) = 字符串長(zhǎng)度 - (字符串正序與逆序的最長(zhǎng)公共子序列長(zhǎng)度)

但是,對(duì)于這道題,僅僅知道這個(gè)公式可不行哦~

題目中有說(shuō)明字符串長(zhǎng)度最大為5000,但是dp數(shù)組開(kāi)到 5000?5000 的話會(huì)內(nèi)存超限。

有兩種解決方案:

使用short類型滾動(dòng)數(shù)組

AC 代碼

#include<iostream>#include<algorithm>#include<stdio.h>#include<string.h>#include<math.h>#include<iostream>using namespace std;#include<vector>#include<queue>#include<map>#define MAXX 5100char c[MAXX],d[MAXX];int dp[2][MAXX],n;void lcs(){ for(int i=1; i<=n; i++) for(int j=1; j<=n; j++) { if(c[i-1]==d[j-1]) dp[i%2][j]=dp[(i-1)%2][(j-1)]+1; else dp[i%2][j]=max(dp[(i-1)%2][j],dp[i%2][(j-1)]); } cout<<n-dp[n%2][n]<<endl; //字符串長(zhǎng)度-最長(zhǎng)公共子序列}int main(){ while(cin>>n>>c) { memset(dp,0,sizeof(dp)); for(int i=n-1; i>=0; i--) d[n-i-1]=c[i]; lcs(); } return 0;}
發(fā)表評(píng)論 共有條評(píng)論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 黑水县| 汽车| 休宁县| 革吉县| 津南区| 武定县| 新河县| 镇坪县| 浏阳市| 绿春县| 麻栗坡县| 神农架林区| 东兰县| 北辰区| 武清区| 扎囊县| 福州市| 宿迁市| 永嘉县| 廉江市| 治多县| 马鞍山市| 礼泉县| 泗洪县| 西乌| 潢川县| 五台县| 光泽县| 山丹县| 天门市| 绥江县| 固原市| 哈巴河县| 津南区| 定远县| 盈江县| 民勤县| 东明县| 弥渡县| 辽源市| 崇义县|