CodeForces - 779D String Game

题意:
        给你一段操作序列; 
        按顺序依次删掉字符串1中相应位置的字符; 
        问你最多能按顺序删掉多少个字符; 
        使得s2是剩下的字符构成的字符串的子列; 

思路:

         由于是求数量,统计后答案只有 2e5 个,故在其他方法难以完成时,可以考虑二分枚举答案。

         二分枚举答案,每得到一个答案就把序列扫一遍。复杂度O(nlogn)

代码:

#include <iostream>

using namespace std;
const int MAXN=2e5+100;
int order[MAXN];
int len1,len2;
string str1,str2;
bool judge(int mid){
    int j=0;
    for(int i=0;i<len1;i++){
        if(order[i]>mid&&str1[i]==str2[j]) j++;
        if(j==len2)
            return 1;
    }
    return 0;
}
int main()
{
    ios::sync_with_stdio(false);
    int x;
    while(cin>>str1>>str2){
        len1=str1.size();
        len2=str2.size();
        for(int i=1;i<=len1;i++){
            cin>>x;
            order[x-1]=i;
        }
        int le=0,ri=len1,mid;
        while(ri-1>le){
            mid=(le+ri)/2;
            if(judge(mid)){
                le=mid;
            }else{
                ri=mid;
            }
        }
        cout<<le<<endl;
    }
}

Little Nastya has a hobby, she likes to remove some letters from word, to obtain another word. But it turns out to be pretty hard for her, because she is too young. Therefore, her brother Sergey always helps her.

Sergey gives Nastya the word t and wants to get the word p out of it. Nastya removes letters in a certain order (one after another, in this order strictly), which is specified by permutation of letters' indices of the word ta1... a|t|. We denote the length of word x as |x|. Note that after removing one letter, the indices of other letters don't change. For example, if t = "nastya" and a = [4, 1, 5, 3, 2, 6] then removals make the following sequence of words "nastya "nastya "nastya"nastya "nastya "nastya "nastya".

Sergey knows this permutation. His goal is to stop his sister at some point and continue removing by himself to get the word p. Since Nastya likes this activity, Sergey wants to stop her as late as possible. Your task is to determine, how many letters Nastya can remove before she will be stopped by Sergey.

It is guaranteed that the word p can be obtained by removing the letters from wordt.

Input

The first and second lines of the input contain the words t and p, respectively. Words are composed of lowercase letters of the Latin alphabet (1 ≤ |p| < |t| ≤ 200 000). It is guaranteed that the word p can be obtained by removing the letters from word t.

Next line contains a permutation a1, a2, ..., a|t| of letter indices that specifies the order in which Nastya removes letters of t (1 ≤ ai ≤ |t|, all ai are distinct).

Output

Print a single integer number, the maximum number of letters that Nastya can remove.

Example
Input
ababcba
abb
5 3 4 1 7 6 2
Output
3
Input
bbbabb
bb
1 6 3 4 2 5
Output
4
Note

In the first sample test sequence of removing made by Nastya looks like this:

"ababcba "ababcba "ababcba "ababcba"

Nastya can not continue, because it is impossible to get word "abb" from word "ababcba".

So, Nastya will remove only three letters.



  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值