gpt4 book ai didi

algorithm - 选择一对不重叠的回文子串的方法数

转载 作者:塔克拉玛干 更新时间:2023-11-03 06:17:01 26 4
gpt4 key购买 nike

给定一个字符串s,期望找到选择一对不重叠的回文子串的方法的数量。
例如在字符串 abcdcefdfdio 中,一种方法是选择 cdcdfd
我的方法是 dp 方法:

    String s = sc.next();
int n = s.length();
int firstsum[] = new int[n];//firstsum[i] stores the number of palindromes in the substring (0...i)
int[][] A = new int[n][n];//A[i][j]=1 denotes the substring (i...j) is a palindrome and =0 otherwise
for(int i=0;i<n;++i)
{
firstsum[i]=0;
for(int j=i;j<n;++j)
{
if(check(s.substring(i,j+1))==1)
{
A[i][j]=1;
}
else
A[i][j]=0;
}
}
for(int i=0;i<n;++i)
{
for(int j=0;j<=i;++j)
{
if(A[j][i]==1)
firstsum[i]++;
}
if(i>0)
firstsum[i]+=firstsum[i-1];
}
int cnt=0;
for(int i=1;i<n;++i)
{
for(int j=i;j<n;++j)
cnt+=A[i][j]*firstsum[i-1];
}
System.out.print(cnt);//answer

solution正在工作但超过了时间限制。有没有更好的方法,最好是在 DP 中?

最佳答案

删除 A[i][j] 填充循环。在最坏的情况下为 O(n^3)

试试这段代码。

String s = sc.next();
int n = s.length();
int firstsum[] = new int[n];//firstsum[i] stores the number of palindromes in the substring (0...i)
int[][] A = new int[n][n];//A[i][j]=1 denotes the substring (i...j) is a palindrome and =0 otherwise

for(int i=0;i<n;++i)
{
A[i][i]=1;
}

for(int len=1;len<n;++len)
{
for(int i=0;i<n-len;++i)
{
if( s.charAt(i)==s.charAt(i+len) && (i+1>=i+len-1 || A[i+1][i+len-1]==1) )
{
A[i][len]=1;
}
else{
A[i][len]=0;
}
}
}


for(int i=0;i<n;++i)
{
firstsum[i]=0;
for(int j=0;j<=i;++j)
{
if(A[j][i]==1)
firstsum[i]++;
}
if(i>0)
firstsum[i]+=firstsum[i-1];
}
int cnt=0;
for(int i=1;i<n;++i)
{
for(int j=i;j<n;++j)
cnt+=A[i][j]*firstsum[i-1];
}
System.out.print(cnt);//answer

关于algorithm - 选择一对不重叠的回文子串的方法数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39993713/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com