uva 10340 all in all

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了uva 10340 all in all相关的知识,希望对你有一定的参考价值。

#include<bits/stdc++.h>
using namespace std;
bool cmpare(string t,string s)
{
    int t_size=t.size();
    int s_size=s.size();
    int t_ipos=0,s_ipos=0;
    while(t_ipos<t_size&&s_ipos<s_size)
    {
        if(t[t_ipos]==s[s_ipos])
        {
            t_ipos++;
            s_ipos++;
        }
        else
            s_ipos++;
    }
    if(s_ipos==s_size&&t_ipos!=t_size)
        return false;
    return true;
}
int main()
{
    string a,b;
    while(cin>>a>>b)
    {
        if(cmpare(a,b))
            cout<<"Yes"<<endl;
        else
            cout<<"No"<<endl;
    }
}

  就一句话,直接模拟,往后移动下标就行。

以上是关于uva 10340 all in all的主要内容,如果未能解决你的问题,请参考以下文章

All in All,( UVa, 10340 )

UVa 10340:All in All(字符串)

[UVA - 10340] All in All 题解

UVA10340 - All in All

uva 10340 All in All

uva 10340 all in all