日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當(dāng)前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

Two Strings(CF-223B)

發(fā)布時間:2025/3/17 编程问答 22 豆豆
生活随笔 收集整理的這篇文章主要介紹了 Two Strings(CF-223B) 小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.

Problem Description

A subsequence of length |x| of string s?=?s1s2... s|s| (where |s| is the length of string s) is a string x?=?sk1sk2... sk|x| (1?≤?k1?<?k2?<?...?<?k|x|?≤?|s|).

You've got two strings — s and t. Let's consider all subsequences of string s, coinciding with string t. Is it true that each character of string s occurs in at least one of these subsequences? In other words, is it true that for all i (1?≤?i?≤?|s|), there is such subsequence x?=?sk1sk2... sk|x| of string s, that x?=?t and for some j (1?≤?j?≤?|x|) kj?=?i.

Input

The first line contains string s, the second line contains string t. Each line consists only of lowercase English letters. The given strings are non-empty, the length of each string does not exceed 2·105.

Output

Print "Yes" (without the quotes), if each character of the string s occurs in at least one of the described subsequences, or "No" (without the quotes) otherwise.

Examples

Input

abab
ab

Output

Yes

Input

abacaba
aba

Output

No

Input

abc
ba

Output

No

Note

In the first sample string t can occur in the string s as a subsequence in three ways: abab, abab and abab. In these occurrences each character of string s occurs at least once.

In the second sample the 4-th character of the string s doesn't occur in any occurrence of string t.

In the third sample there is no occurrence of string t in string s.

題意:給出兩個字符串 S、T,對于 S 的每一個字符尋找一個長度與 T 相同的子串,如果這些子串均與 T 相同,那么輸出 Yes,否則輸出 No

思路:記錄字符串 S 中每一個字符在 T 串向前、向后能匹配的位置,然后對位置進行求和比較,如果向前的位置+向后的位置大于字符串 T 的長度,則說明匹配成功

Source Program

#include<iostream> #include<cstdio> #include<cstdlib> #include<string> #include<cstring> #include<cmath> #include<ctime> #include<algorithm> #include<utility> #include<stack> #include<queue> #include<vector> #include<set> #include<map> #include<bitset> #define EPS 1e-9 #define PI acos(-1.0) #define INF 0x3f3f3f3f #define LL long long const int MOD = 1E9+7; const int N = 500000+5; const int dx[] = {-1,1,0,0,-1,-1,1,1}; const int dy[] = {0,0,-1,1,-1,1,-1,1}; using namespace std;char s[N],t[N]; int bucketS[N],bucketT[N]; int pre[N],suf[N]; int main(){scanf("%s",s);scanf("%s",t);int sLen=strlen(s);int tLen=strlen(t);for(int i=0,j=0;i<sLen;i++){if(s[i]==t[j]&&j<tLen){bucketS[s[i]]=j;j++;}pre[i]=bucketS[s[i]];}for(int i=sLen-1,j=tLen-1;i>=0;i--){if(s[i]==t[j]&&j>=0){bucketT[s[i]]=tLen-j;j--;}suf[i]=bucketT[s[i]];}bool flag=true;for(int i=0;i<sLen;i++){if(pre[i]+suf[i]<tLen){flag=false;break;}}if(flag)printf("Yes\n");elseprintf("No\n");return 0; }

?

總結(jié)

以上是生活随笔為你收集整理的Two Strings(CF-223B)的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯,歡迎將生活随笔推薦給好友。