题解 CF1203D2 Remove the Substring (hard version)

Posted colazcy

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了题解 CF1203D2 Remove the Substring (hard version)相关的知识,希望对你有一定的参考价值。

题目链接

Solution CF1203D

题目大意:给定两个字符串(s),(t), (t)(s)的子序列,问最长可以在(s)里面删掉多长的连续子序列使得(t)仍为(s)的子序列

贪心


分析:

假如我们(t)的一个前缀要匹配(s)的话,显然尽可能往前匹配,这样可以使得答案尽量大,后缀同理

我们用(suf[i])表示(t[1dots i])可以匹配(s)前缀的最前的位置,(suf[i])表示(t[i dots |t|])可以匹配(s)后缀的最后的位置

我们枚举所有(t)的位置(i),当(pre[i] < suf[i + 1])时,(suf[i + 1] - pre[i] - 1)可以成为答案,取个最大值即可

CCF毒瘤程序

#include <algorithm>
#include <cstdio>
#include <cstring>
using namespace std;
const int maxn = 2e5 + 100;
char s[maxn],t[maxn];
int slen,tlen,ans,pre[maxn],suf[maxn];
int main(){
    scanf("%s",s + 1);
    scanf("%s",t + 1);
    slen = strlen(s + 1);
    tlen = strlen(t + 1);
    for(int i = 1;i <= tlen;i++){
        pre[i] = pre[i - 1] + 1;
        while(pre[i] <= slen && s[pre[i]] != t[i])pre[i]++;     
    }
    suf[tlen + 1] = slen + 1;
    for(int i = tlen;i >= 1;i--){
        suf[i] = suf[i + 1] - 1;
        while(suf[i] >= 1 && s[suf[i]] != t[i])suf[i]--;
    }
    for(int i = 0;i <= tlen;i++)
        if(pre[i] < suf[i + 1])ans = max(ans,suf[i + 1] - pre[i] - 1);
    printf("%d
",ans);
    return 0-0;
}

以上是关于题解 CF1203D2 Remove the Substring (hard version)的主要内容,如果未能解决你的问题,请参考以下文章

cf1561D Up the Strip(D1&&D2)

cf 题解--D. Dahlia The Champion

题解The Last Hole! [CF274C]

[题解] CF622F The Sum of the k-th Powers

题解Luogu CF1051F The Shortest Statement

CF743B Chloe and the sequence 题解 分治