紫书 习题3-9 子序列(All in All,UVa10340)

#include
#include
#include
#include
#include
#include
#include
#include

using namespace std;

const int MAX=1e6+10;

int main()
{
    char s[MAX],t[MAX];
    while(scanf("%s %s",s,t)!=EOF)
    {
    	int count=0;
		for(int i=0;i<strlen(t);i++)
		{
			if(t[i]==s[count])
				count++;
		}
		if(count==strlen(s))
			printf("Yes\n");
		else
			printf("No\n");
	}
	return 0;
}

你可能感兴趣的:(紫书 习题3-9 子序列(All in All,UVa10340))