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

习题3-10 All in All UVA - 10340

时间:2018-09-16 15:53:42      阅读:174      评论:0      收藏:0      [点我收藏+]

标签:bit   class   复杂度   names   turn   lse   mes   位置   ios   

水题,记两个位置,依次遍历,从头找到尾就行了,对每个用例,复杂度o(min(s.size(),t.size())).

#include <bits/stdc++.h>
using namespace std;
string s,t;
int main()  {
    ios::sync_with_stdio(false);
    cin.tie(0);
    while (cin>>s>>t)   {
        int spos=0,tpos=0;
        while (spos!=(int)s.size()&&tpos<(int)t.size())  {
            if (s[spos]==t[tpos])
                spos++,tpos++;
            else    tpos++;
        }
        if (spos==(int)s.size()) cout<<"Yes"<<endl;
        else    cout<<"No"<<endl;
    }
    return 0;
}

习题3-10 All in All UVA - 10340

标签:bit   class   复杂度   names   turn   lse   mes   位置   ios   

原文地址:https://www.cnblogs.com/yichuan-sun/p/9655265.html

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