cf.VK CUP 2015.C.Name Quest(贪心)

Name Quest
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

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 saba», 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 s happy.

Sample test(s)
input
aba baobababbah
output
2
input
mars sunvenusearthmarsjupitersaturnuranusneptune
output
0
先从左到右,找到子串中的第一个母串,让l = sub[index];(对应母串的最后一个字母)
再从右往左找第一个符合的母串,让r = sub[index] ;(对应母串的第一个字母)
最后printf ("%d\n" , max (0 , r - l))
然后我把代码写搓了 , orz
 1 #include<stdio.h>
 2 #include<string.h>
 3 #include<iostream>
 4 #include<algorithm>
 5 using namespace std;
 6 string p , s ;
 7 
 8 int main ()
 9 {
10     //freopen ("a.txt" , "r" , stdin ) ;
11     cin >> p ;
12     cin >> s ;
13     int l = 0 , r = s.size () - 1;
14     for (int i = 0 ; i < p.size() ; i++) {
15         while (l < s.size () && p[i] != s[l]) {
16             l ++ ;
17         }
18         if (l < s.size ()) {
19             l ++ ;
20         }
21         else {
22             puts ("0") ;
23             return 0 ;
24         }
25     }
26     for (int i = p.size () - 1 ; i >= 0 ; i--) {
27         while (r >= 0 && p[i] != s[r]) {
28             r-- ;
29         }
30         if (r >= 0) {
31             r-- ;
32         }
33         else {
34             puts ("0") ;
35             return 0 ;
36         }
37     }
38     l -- , r++ ;
39     printf ("%d\n" , max (0 , r - l) ) ;
40 }
View Code

 

转载于:https://www.cnblogs.com/get-an-AC-everyday/p/4372832.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值