Uva 10340.All in All

Posted

tags:

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

哎~这题没什么要注意的吧。。。注意数组别开太小就行

然后往下比较下去……十分钟就能撸完吧

 1 #include <cstdio>
 2 using namespace std;
 3 
 4 #define REP(n) for(int o=0;o<n;o++)
 5 
 6 bool Do();
 7 
 8 int main(){
 9     //freopen("in.txt","r",stdin);
10     while(Do());
11     return 0;
12 }
13 
14 bool Do(){
15     const int maxn=1000000;
16     char s[maxn];
17     char t[maxn];
18 
19     REP(maxn)
20         s[o]=t[o]=\0;
21 
22     if(scanf("%s%s",s,t)==EOF)
23         return false;
24 
25     int si=0,ti=0;
26     bool yes=false;
27     while(1){
28         if(s[si]==\0){
29             yes=true;
30             break;
31         }
32         if(t[ti]==\0)break;
33         if(s[si]==t[ti])si++;
34         ti++;
35     }
36     printf("%s\n",yes?"Yes":"No");
37     return true;
38 }

 

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

UVa 10340:All in All(字符串)

[UVA - 10340] All in All 题解

UVA10340 - All in All

uva 10340 All in All

uva 10340 all in all

UVa10340 All in All (子序列)