uva 10340 All in All

Posted ArvinShaffer

tags:

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

水题,从头到尾扫一遍就可以了,输入两个字符串s和t,判断是否可以从t中删除0个或多个字符(其他字符顺序不变),得到字符串s。例如,abcde可以得到bce,但无法得到dc。

#include<algorithm>  
#include<cstring>  
#include<cstdio> 
#include<iostream>
#define len  101000  

using namespace std;

char s[len], t[len];

int main()
{
    int sn, tn, ls, lt;
    while (cin >> s) {
        cin >> t;
        ls = strlen(s);
        lt = strlen(t);
        sn = 0;tn = 0;
        for (int i = 0;i < ls, i < lt;i++) {
            if (s[sn] == t[tn]) {
                sn++;
                tn++;
            }
            else {
                tn++;
            }
        }
        if (sn == ls)cout << "Yes" << endl;
        else cout << "No" << endl;
    }
    return 0;
}

 

以上是关于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