码迷,mamicode.com
首页 >  
搜索关键字:palindrome    ( 1561个结果
滚动数组~\(≧▽≦)/~
今天第一次用了滚动数组,缘由要从一道题说起:POJ 1159 Palindrome 题意:给你一个字符串,求对字符串最少添加几个字符可变为回文串。 分析: 简单做法是直接对它和它的逆序串求最长公共子序列长度len。n-len即为所求。至于为什么,小盆友们可以自己模拟一下下。O(∩_∩)O~因为这不是...
分类:其他好文   时间:2014-08-09 11:29:07    阅读次数:286
POJ 3280 Cheapest Palindrome DP题解
看到Palindrome的题目,首先想到的应该是中心问题,然后从中心出发,思考如何解决。 DP问题一般是从更加小的问题转化到更加大的问题,然后是从地往上 bottom up地计算答案的。 能得出状态转移方程就好办了,本题的状态转移方程是: if (cowID[i] == cow{j]) tbl[id][i] = tbl[id][i+1];//相等的时候无需改动 else tbl[id][i...
分类:其他好文   时间:2014-08-09 00:14:16    阅读次数:344
[leetcode]Palindrome Partitioning II
Palindrome Partitioning IIGiven a strings, partitionssuch that every substring of the partition is a palindrome.Return the minimum cuts needed for a p...
分类:其他好文   时间:2014-08-07 21:54:30    阅读次数:222
POJ1159 Palindrome 【动态规划】
Palindrome Time Limit: 3000MS   Memory Limit: 65536K Total Submissions: 52571   Accepted: 18124 Description A palindrome is a symmetrical string, that is, a string read...
分类:其他好文   时间:2014-08-06 19:03:12    阅读次数:194
Palindrome Partitioning II Leetcode java
题目:Given a string s, partition s such that every substring of the partition is a palindrome.Return the minimum cuts needed for a palindrome partition....
分类:编程语言   时间:2014-08-05 13:32:29    阅读次数:252
Prime Palindrome Golf
Prime Palindrome GolfDo you know how to play Prime Palindrome Golf? You are given a number and your challenge is to find the closest palindromic prime...
分类:其他好文   时间:2014-08-05 13:24:49    阅读次数:274
POJ1159,Palindrome
Palindrome Time Limit: 3000MS   Memory Limit: 65536K Total Submissions: 52543   Accepted: 18113 Description A palindrome is a symmetrical string, that is, a string read...
分类:其他好文   时间:2014-08-05 09:36:39    阅读次数:246
Palindrome Number leetcode java
题目:Determine whether an integer is a palindrome. Do this without extra space.click to show spoilers.Some hints:Could negative integers be palindromes....
分类:编程语言   时间:2014-08-04 04:09:56    阅读次数:339
POJ 1159 Palindrome 题解
本题的题意理解之后,就是求最长回文子序列 longest palindrome subsequence,这里注意子序列和子串的区别。 有两种求法,一种是直接求,相当于填矩阵右上对角阵,另一种是转化为longest common subsequence的求法。 最大难点就是要求内存不能使用二维的。 故此第一种方法是有点难度的,因为需要把二维矩阵的对角线转化为一维表记录,对好下标就好了。 第二中...
分类:其他好文   时间:2014-08-02 23:32:34    阅读次数:326
UVA 11475 - Extend to Palindrome(KMP)
UVA 11475 - Extend to Palindrome 题目链接 题意:给定一个字符串,问需要补上最少的字符使他变成回文串 思路:KMP,把字符串逆序和原串做匹配,匹配到最后一个字符看匹配了多少个,就是最大重合部分,然后相应输出即可 代码: #include #include #include using namespace std; const i...
分类:其他好文   时间:2014-08-02 21:00:44    阅读次数:212
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!