POJ1936
Posted 000what
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了POJ1936相关的知识,希望对你有一定的参考价值。
Sample Input
sequence subsequence
person compression
VERDI vivaVittorioEmanueleReDiItalia
caseDoesMatter CaseDoesMatter
Sample Output
Yes
No
Yes
No
POJ题目分类 串。
水题, 但Yes错写成YES, No错写成NO WA了好几次
const int maxn = 1e5 + 24;
char a[maxn], b[maxn];
int main()
//freopen("in.txt", "r", stdin);
//freopen("out.txt", "w", stdout);
while(~scanf("%s%s", a, b))
int x = strlen(a), y = strlen(b);
int i, j;
for(i = 0, j = 0; i < x && j < y; j++) i += (a[i] == b[j]);
if(i == x) puts("Yes");
else puts("No");
return 0;
以上是关于POJ1936的主要内容,如果未能解决你的问题,请参考以下文章