CodeForces - 523C Name Quest 思维

A Martian boy is named s — 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 s=«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 t 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 s determine the number of distinct ways to cut the given string t into two parts in the required manner.

Input

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

The second line contains string t, that also consists of lowercase English letters. The length of string t is from 1 to 106 letters.

Output

Print the sought number of ways to cut string t in two so that each part made shappy.

Examples

Input

aba
baobababbah

Output

2

Input

mars
sunvenusearthmarsjupitersaturnuranusneptune

Output

0

题目链接:点击查看

题意:把b分成两个串,要求a都是他们的子串,有多少分割方法

题解:从前面找到最靠前的位置,从后面找到最靠后的位置,中间任意位置都可以

#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
const int N=1e6+10;
char a[N],b[N];
int main()
{
	scanf("%s%s",a+1,b+1);
	int la=strlen(a+1);
	int lb=strlen(b+1);
	int i;
	int p1,p2;
	for(i=1,p1=1;p1<=lb;p1++)
	{
		if(a[i]==b[p1]) i++;
		if(i>la) break;
	}
	for(i=la,p2=lb;p2>=1;p2--)
	{
		if(a[i]==b[p2]) i--;
		if(i<1) break;
	}
//	cout<<p2<<" "<<p1<<endl;
	printf("%d\n",max(0,p2-p1));
	return 0;
}

 

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值