CF523C.Name Quest

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

A Martian boy is named ss — he has got this name quite recently from his parents for his coming of age birthday. Now he enjoys looking for his name everywhere. If he sees that he can obtain his name from some string by removing zero or more letters (at that, the remaining letters remain in the same order), he gets happy. For example, if ss =«aba», then strings «baobab», «aabbaa», «helloabahello» make him very happy and strings «aab», «baaa» and «helloabhello» do not.

However rather than being happy once, he loves twice as much being happy twice! So, when he got string tt as a present, he wanted to cut it in two parts (the left part and the right part) so that each part made him happy.

Help ss determine the number of distinct ways to cut the given string tt into two parts in the required manner.

输入格式

The first line contains string ss , consisting of lowercase English letters. The length of string ss is from 1 to 1000 letters.

The second line contains string tt , that also consists of lowercase English letters. The length of string tt is from 1 to 10610^{6} letters.

输出格式

Print the sought number of ways to cut string tt in two so that each part made ss happy.

输入输出样例

  • 输入#1

    aba
    baobababbah
    

    输出#1

    2
    
  • 输入#2

    mars
    sunvenusearthmarsjupitersaturnuranusneptune
    

    输出#2

    0
    
首页