B1040 Longest Symmetric String (
2020-01-28 本文已影响0人
Tsukinousag
B1040 Longest Symmetric String (25分)
求字符串中的最长回文串
-
普通模拟
枚举端点O(n*n),判断是否回文O(n),因此总的复杂度是O(n^3).
#include <iostream>
#include <algorithm>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <string.h>
#include <cmath>
#include <math.h>
#include <vector>
#include <queue>
#include <map>
#include <set>
#include <stack>
#define lowbit(i)((i)&(-i))
using namespace std;
typedef long long ll;
const int MAX=21;
const int INF=0x3f3f3f3f;
const int MOD=1000000007;
const int SQR=633;
string s;
bool check(int st,int ed)
{
while(st<ed)
{
if(s[st]==s[ed])
{
st++;
ed--;
}
else if(s[st]!=s[ed])
return false;
}
return true;
}
int main()
{
int x,y,flag=0,maxlen=0;
getline(cin,s);
for(int i=0;i<s.size();i++)
{
for(int j=s.size()-1;j>i;j--)
{
if(check(i,j))
{
x=i;
y=j;
flag=1;
maxlen=max(maxlen,y-x+1);
}
}
}
if(flag==1)
printf("%d\n",maxlen);
else
printf("1\n");
return 0;
}
方便的话直接用reverse处理回文
#include <iostream>
#include <algorithm>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <string>
#include <cmath>
#include <math.h>
#include <vector>
#include <queue>
#include <map>
#include <set>
#include <stack>
#define lowbit(i)((i)&(-i))
using namespace std;
typedef long long ll;
const int MAX=4e4+10;
const int INF=0x3f3f3f3f;
const int MOD=1000000007;
const int SQR=632;//633块,632个
string s;
int maxlen=0;
int main()
{
getline(cin,s);
for(int i=0;i<s.size();i++)
{
for(int j=i;j<s.size();j++)
{
string str=s.substr(i,j-i+1);
string t=str;
reverse(t.begin(),t.end());
if(t==str)
maxlen=max(maxlen,j-i+1);
}
}
cout<<maxlen<<endl;
return 0;
}
-
区间dp 枚举容易出错的地方
边界状态两种:dp[i][i]=1或dp[i][i+1]=(s[i]==s[i+1])?1:0
因此以字串的长度和字串的初始位置进行枚举,即第一遍将字串长度为3的全部求出,再长度为4...
时间复杂度O(n*n)
#include <iostream>
#include <algorithm>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <string.h>
#include <cmath>
#include <math.h>
#include <vector>
#include <queue>
#include <map>
#include <set>
#include <stack>
#define lowbit(i)((i)&(-i))
using namespace std;
typedef long long ll;
const int MAX=1001;
const int INF=0x3f3f3f3f;
const int MOD=1000000007;
const int SQR=633;
int dp[MAX][MAX];
int main()
{
string s;
getline(cin,s);
memset(dp,0,sizeof(dp));
int len=s.length(),ans=1;
for(int i=0;i<len;i++)
{
dp[i][i]=1;
if(i<len-1)
{
if(s[i]==s[i+1])
{
dp[i][i+1]=1;
ans=2;
}
}
}
for(int l=3;l<=len;l++)
{
for(int i=0;i<len-l+1;i++)
{
int j=i+l-1;
if(dp[i+1][j-1]==1&&s[i]==s[j])
{
dp[i][j]=1;
ans=l;
}
}
}
printf("%d\n",ans);
return 0;
}