由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
JobHunting版 - 请教道算法题
相关主题
求一道题的解答问两个Palindrome的老题
Amazon Summer Intern Offer, 发面经palindrome question
Bloomberg面试题leetcode一题没看明白
DP通项公式Question on leetcode Distinct Subsequences
有人同看Longest Palindromic Substring 这道题么?问一个题,求相同元素最多的两个数组
问一道算法题max length of subsequence string matching subs一道caeerCup上的难算法题
leetcode里的Palindrome partition问题寻找子序列/子段落
MS SDET面经Longest common string问题
相关话题的讨论汇总
话题: ci话题: cj话题: palindrome话题: 算法话题: string
进入JobHunting版参与讨论
1 (共1页)
g*********e
发帖数: 14401
1
给定一个string,可以任意删除其中的char,以使的剩下的string成为palindrome,求最
长的这样
的palindrome。问有啥dp算法可以解?
有大侠帮忙指点一下吗 thx
z****e
发帖数: 2024
2
我靠,乱军中,还有你这坚守阵地的猛将!

【在 g*********e 的大作中提到】
: 给定一个string,可以任意删除其中的char,以使的剩下的string成为palindrome,求最
: 长的这样
: 的palindrome。问有啥dp算法可以解?
: 有大侠帮忙指点一下吗 thx

g*********e
发帖数: 14401
3
。。。我才上来 发生啥了
f***g
发帖数: 214
4
哈哈

【在 z****e 的大作中提到】
: 我靠,乱军中,还有你这坚守阵地的猛将!
i******0
发帖数: 609
5
Suppose the string length is N,
For any i, j such that 0<=i<=N-1, 0<=j<=N-1,
Ci is the character at index i, Cj is the character at index j
L(i, j) = the max length of the subsequence palindrome in the substring Ci...Cj
L(i, j) = 0 if i>j
L(i, j) = 1 if i==j
L(i, j) = 2 + L(i+1, j-1) if Ci == Cj
L(i, j) = max {L(i, j-1), L(i+1, j)} if Ci != Cj
L(0, N-1) will be the result you are looking for.

【在 g*********e 的大作中提到】
: 给定一个string,可以任意删除其中的char,以使的剩下的string成为palindrome,求最
: 长的这样
: 的palindrome。问有啥dp算法可以解?
: 有大侠帮忙指点一下吗 thx

b***e
发帖数: 1419
6
这个题说过一千遍了:就是LCS(s, reverse(s))。这种加或减成palindrome的题都是
LCS.
Search: longest common sequence.

【在 g*********e 的大作中提到】
: 给定一个string,可以任意删除其中的char,以使的剩下的string成为palindrome,求最
: 长的这样
: 的palindrome。问有啥dp算法可以解?
: 有大侠帮忙指点一下吗 thx

a******7
发帖数: 106
7
thx, blaze!
1 (共1页)
进入JobHunting版参与讨论
相关主题
Longest common string问题有人同看Longest Palindromic Substring 这道题么?
nlogn for longest increasing subsequence问一道算法题max length of subsequence string matching subs
问道老题leetcode里的Palindrome partition问题
leetcode online judge Longest Palindromic Substring memory limit exceededMS SDET面经
求一道题的解答问两个Palindrome的老题
Amazon Summer Intern Offer, 发面经palindrome question
Bloomberg面试题leetcode一题没看明白
DP通项公式Question on leetcode Distinct Subsequences
相关话题的讨论汇总
话题: ci话题: cj话题: palindrome话题: 算法话题: string