HDU 5414(2015多校10)-CRB and String(字符串处理)

题目地址:HDU 5414
题意:要求判断字符串s能否通过添加若干个字符得到字符串t
思路:这个题看起来复杂,其实仔细一分析,成功转化只包含两种情况。第一种因为要求插入的新字符和它前面的字符c不同,如果t中有x个连续的c,那么在s中也必须有x个连续的c;第二种是s必须是t的一个不连续子串。

#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#pragma comment(linker, "/STACK:102400000,102400000")
using namespace std;
typedef long long  LL;
const int inf=0x3f3f3f3f;
const double pi= acos(-1.0);
const double esp=1e-7;
const int Maxn=1e5+10;
char s[Maxn],t[Maxn];
int n,m;
int len1,len2;
int check()
{
    int i,j;
    for(i=1;iif(t[i]!=t[0]) break;//找到t串的第一个不连续的位置
    for(j=0;j//看s的前i个子串是否连续
        if(s[j]!=t[j]) return 0;
    for(;jfor(;i//找到下一个和s相等的地方
            if(t[i]==s[j])
                break;
        }
        if(i==len2) return 0;//如果t找完了还没跳出证明s不是t的子串
        i++;
        j++;
    }
    return 1;
}
int main()
{
    int T;
    scanf("%d",&T);
    while(T--){
        scanf("%s %s",s,t);
        len1=strlen(s);
        len2=strlen(t);
        if(check())
            puts("Yes");
        else
            puts("No");
    }
    return 0;
}

你可能感兴趣的:(HDU,oj)