Codeforces Round #579 (Div. 3)D2Remove the Substring (hard version)

我怕爱的太早我们不能终老 提交于 2019-11-27 07:37:36

Codeforces Round #579 (Div. 3)D2Remove the Substring (hard version)

http://codeforces.com/contest/1203/problem/D2

题目大意:给出一段长串s1和它的一段非连续子串s2,求s1最长的连续删除区间,使得s2仍为s1的非连续子串

分析:最大分割情况只可能是两种,一种是最左端或者最右端删去一大段,另一种是中间任意两个字母间删去一大段

先看第一种,那么肯定是要找到s2在s1中的最左相同点和最右相同点,很简单

另一种,删去的区间端点两个字母肯定是s2中相邻的字母,即保证删去中间一段没用的,仍是子串 例如s1:abbccbbbcccddde s2: ab
那么最长区间肯定是找到s1最左端满足条件的a,再找到s1最右端满足条件的b,中间都是可以删的,如果s2:abd 就找到s1最左端满足条件的b,再找到s1最右端满足条件的d,作差值,然后取max

以此类推

/**
 *  Author1: low-equipped w_udixixi
 *  Author2: Sherؼlock
 *  Date :2019-08-13
 **/
#include<cstdio>
#include<cstring>
#include<algorithm>
#include<iostream>
#include<string>
#include<vector>
#include<stack>
#include<bitset>
#include<cstdlib>
#include<cmath>
#include<set>
#include<list>
#include<deque>
#include<queue>
#include<map>
#define ll long long
#define pb push_back
#define rep(x,a,b) for (int x=a;x<=b;x++)
#define repp(x,a,b) for (int x=a;x<b;x++)
#define pi 3.14159265358979323846
#define mem(a,x) memset(a,x,sizeof a)
using namespace std;
const int maxn=2e5+7;
const int INF=1e9;
const ll INFF=1e18;
char s1[maxn],s2[maxn];
int fro[maxn],bac[maxn];
int main()
{
    cin>>s1;cin>>s2;
    int l1=strlen(s1),l2=strlen(s2);
    int j=0;
    for (int i=0;i<l1&&j<l2;i++)
        if (s1[i]==s2[j])
            fro[j++]=i;
    j=l2-1;
    for (int i=l1-1;i>=0&&j>=0;i--)
        if (s1[i]==s2[j])
            bac[j--]=i;
    int maxx1=max(fro[0],l1-1-fro[l2-1]);//第一种情况
    int maxx2=max(bac[0],l1-1-bac[l2-1]);//第一种情况
    int maxx=max(maxx1,maxx2);
    rep(i,1,l2-1)
        maxx=max(maxx,bac[i]-fro[i-1]-1);//第二种情况
    cout<<maxx<<endl;
}
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!