码迷,mamicode.com
首页 > 其他好文 > 详细

Uva 10340 All in All

时间:2015-02-28 21:33:58      阅读:222      评论:0      收藏:0      [点我收藏+]

标签:

#include <cstdio>
#include <cstring>

char s[100005],t[100005];

int main()
{
    int yes, n = 0;
    while(scanf("%s%s",s,t)==2)
    {
        yes = 1;
        n = 0;
        for(int j = 0, i = 0;  s[i] && t[j]; j++)
        {
                if(s[i] == t[j])
                {
                    i ++;
                    n = i;
                }
        }
        if(s[n]) yes = 0;
        if(yes)
            printf("Yes\n");
        else
            printf("No\n");

    }
    return 0;
}

 

Uva 10340 All in All

标签:

原文地址:http://www.cnblogs.com/ekinzhang/p/4306210.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!