CF1203D2.Remove the Substring (hard version)

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

The only difference between easy and hard versions is the length of the string.

You are given a string ss and a string tt , both consisting only of lowercase Latin letters. It is guaranteed that tt can be obtained from ss by removing some (possibly, zero) number of characters (not necessary contiguous) from ss without changing order of remaining characters (in other words, it is guaranteed that tt is a subsequence of ss ).

For example, the strings "test", "tst", "tt", "et" and "" are subsequences of the string "test". But the strings "tset", "se", "contest" are not subsequences of the string "test".

You want to remove some substring (contiguous subsequence) from ss of maximum possible length such that after removing this substring tt will remain a subsequence of ss .

If you want to remove the substring s[l;r]s[l;r] then the string ss will be transformed to s1s2sl1sr+1sr+2ss1sss_1 s_2 \dots s_{l-1} s_{r+1} s_{r+2} \dots s_{|s|-1} s_{|s|} (where s|s| is the length of ss ).

Your task is to find the maximum possible length of the substring you can remove so that tt is still a subsequence of ss .

输入格式

The first line of the input contains one string ss consisting of at least 11 and at most 21052 \cdot 10^5 lowercase Latin letters.

The first line of the input contains one string tt consisting of at least 11 and at most 21052 \cdot 10^5 lowercase Latin letters.

It is guaranteed that tt is a subsequence of ss .

输出格式

Print one integer — the maximum possible length of the substring you can remove so that tt is still a subsequence of ss .

输入输出样例

  • 输入#1

    bbaba
    bb
    

    输出#1

    3
    
  • 输入#2

    baaba
    ab
    

    输出#2

    2
    
  • 输入#3

    abcde
    abcde
    

    输出#3

    0
    
  • 输入#4

    asdfasdf
    fasd
    

    输出#4

    3
    
首页