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

UVa10340 All in All

时间:2015-06-23 06:21:44      阅读:117      评论:0      收藏:0      [点我收藏+]

标签:

#include <iostream>
#include <string>
using namespace std;

int main()
{
    string s, t;
    string::size_type p, q;
    while (cin >> s >> t)
    {
        p = 0;
        for (string::const_iterator it = s.begin(); it != s.end(); ++it)
        {
            q = t.find_first_of(*it, p);
            if (q == string::npos)
                break;
            p = q + 1;
        }

        if (q != string::npos)
            cout << "Yes\n";
        else
            cout << "No\n";
    }

    return 0;
}

UVa10340 All in All

标签:

原文地址:http://www.cnblogs.com/danny1221/p/4594464.html

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