题目链接:
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;
}