1040 Longest Symmetric String (25分)
Given a string, you are supposed to output the length of the longest symmetric sub-string. For example, given Is PAT&TAP symmetric?, the longest symmetric sub-string is s PAT&TAP s, hence you must output 11.
Input Specification:
Each input file contains one test case which gives a non-empty string of length no more than 1000.
Output Specification:
For each test case, simply print the maximum length in a line.
Sample
Input:
Is PAT&TAP symmetric?
Output:
11
Solution
假设回文串在 i
,j
之间,所有的 i
,j
组合有
然后,进一步分析会发现,其实存在很多重复的子问题,如 对于下标为i
,j
的字符串它依赖于i+1
,j-1
。因此符合动态规划的思想,即从底向上并且对子问题进行记录。它的规划式为
这里有一个问题点,计算 LSS(i,j)
要用到 LSS(i+1,j-1)
,因此计算时不能采用 i,j 这样遍历,而是以 j-i 的长度为依据进行遍历,先计算为1
,2
的情况,在计算其它情况。
Code
暴力
1 |
|
动态规划
1 |
|
- 本文标题:1040 Longest Symmetric String (25分)
- 本文作者:codeflysafe
- 创建时间:2020-03-10 13:36:30
- 本文链接:https://codeflysafe.github.io/2020/03/10/2020-03-10-1040-Longest-Symmetric-String-(25分)/
- 版权声明:本博客所有文章除特别声明外,均采用 BY-NC-SA 许可协议。转载请注明出处!
评论