吉哥系列故事——完美队形II HDU - 4513

http://acm.hdu.edu.cn/showproblem.php?pid=4513

在扩展回文半径时加上判断大小就好

#include 
using namespace std;
const int maxn=1e5+10;

int tmp[maxn],ary[2*maxn],book[2*maxn];
int n;

int solve(int *ary,int n)
{
    int i,p,r,res;
    p=0,r=0,res=0;
    for(i=0;i

 

你可能感兴趣的:(回文串)