「CF477C」Dreamoon and Strings
题解
f[i][j]表示前i个删j个可以匹配的最大次数
f[i][j]=max(f[i-1][j],f[i-len(p)-cal()][j-cal()]+1)
cal()表示从第i位往前,使得s的末尾与p匹配最少要删多少个
因为f[i][j]>=f[i-1][j-1]所以多删没有意义
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 |
#include<iostream> #include<cstdio> #include<cstdlib> #include<algorithm> #include<cmath> #include<cstring> #define inf 1000000000 #define ll long long #define mod 1000000007 using namespace std; int read() { int x=0,f=1;char ch=getchar(); while(ch<'0'||ch>'9'){if(ch=='-')f=-1;ch=getchar();} while(ch>='0'&&ch<='9'){x=x*10+ch-'0';ch=getchar();} return x*f; } int n,len; char s[2005],ch[2005]; int f[2005][2005]; int cal(int x) { if(x<len)return inf; int ans=0,p=len,q=x; while(p&&q) { if(s[q]==ch[p])p--,q--; else ans++,q--; } if(p==0)return ans; return inf; } int main() { scanf("%s%s",s+1,ch+1); n=strlen(s+1),len=strlen(ch+1); for(int i=0;i<=n;i++) for(int j=0;j<=n;j++) if(i<j)f[i][j]=-inf; for(int i=1;i<=n;i++) { int x=cal(i); for(int j=0;j<=n;j++) { f[i][j]=max(f[i][j],f[i-1][j]); if(j-x>=0)f[i][j]=max(f[i][j],f[i-len-x][j-x]+1); } } for(int i=0;i<=n;i++) printf("%d ",f[n][i]); return 0; } |
Subscribe