Codeforces Round #402 (Div. 2)D. String Game 二分

题目链接:

http://codeforces.com/contest/779/problem/D

题意:

给两个串,给出删掉第一个串的第几位的序列,问 最多能删除几次 使得第二个串还是第一个的子序列

题解:

二分 KMP不会= =
就照着没用kmp的人 写了一下 当时没敢写 md !

代码:

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
#define MS(a) memset(a,0,sizeof(a))
#define MP make_pair
#define PB push_back
const int INF = 0x3f3f3f3f;
const ll INFLL = 0x3f3f3f3f3f3f3f3fLL;
inline ll read(){
    ll 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;
}
//////////////////////////////////////////////////////////////////////////
const int maxn = 2e5+10;

string s1,s2,s3;
int c[maxn];

bool check(int l1,int l2){
    int i=0,j=0;
    while(i<l1 && j<l2){
        if(s1[i]==s2[j])
            j++;
        i++;
    }
    if(j == l2)
        return true;
    else
        return false;
}

int main(){
    cin >> s1 >> s2;
    int len1 = s1.size();
    for(int i=0; i<len1; i++){
        int x; cin >> x;
        c[i] = --x;
    }

    s3 = s1;
    int len2 = s2.size();
    int ans = 0;
    int le=0,ri=len1;
    while(le<=ri){
        int mid = (le+ri)/2;
        for(int i=0; i<mid; i++){
            s1[c[i]] = '*';
        }

        if(check(len1,len2)){
            ans = max(mid,ans);
            le = mid+1;
        }else{
            ri = mid-1;
        }
        for(int i=0; i<mid; i++){
            s1[c[i]] = s3[c[i]];
        }
    }

    cout << ans << endl;

    return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值