最长对称子串 (最长回文字串) pta 7-12
Posted hulian425
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了最长对称子串 (最长回文字串) pta 7-12相关的知识,希望对你有一定的参考价值。
题目链接 https://pintia.cn/problem-sets/1218774283169423360/problems/1218774532776648715
方法一, 见代码
#include <cstdio> #include <iostream> #include <algorithm> #include <string> #include <cstring> #include<cmath> #include<vector> using namespace std; typedef long long ll; string a; int m = 0; int solve1(int l, int r) { while (l >= 0 && r < a.size() && a[l] == a[r]) { l--;r++; } return r - 1 - (l + 1) + 1; } int solve2(int l, int r) { while (l >= 0 && r < a.size() && a[l] == a[r]) { l--;r++; } return r - 1 - (l + 1) + 1; } int main() { getline(cin, a); for (int i = 0; i < a.size(); i++) { m = max(solve1(i,i), m); m = max(solve2(i,i + 1), m); } cout << m << endl; }
方法二 马拉车算法
以上是关于最长对称子串 (最长回文字串) pta 7-12的主要内容,如果未能解决你的问题,请参考以下文章