1400统计单词数 (noip2011普及组第2题)

Posted TFLSNOI

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了1400统计单词数 (noip2011普及组第2题)相关的知识,希望对你有一定的参考价值。

 1 #include<cstdio>
 2 #include<cstring>
 3 #include<iostream>
 4 #include<string>
 5 using namespace std;
 6 int main()
 7 {
 8     int t=0,t1=0,l,l2;
 9     string s,ss;
10     getline(cin,ss);
11     getline(cin,s);
12     l2=ss.size();    
13     l=s.size();
14     for(int i=0;i<=l-l2;i++)
15     {
16         for(int j=0;j<l2;j++)
17         {
18             if(toupper(s[i+j])!=toupper(ss[j]))break;
19             if(i>0&&s[i-1]!= )break;
20             if(j==l2-1&&(s[i+j+1]== ||j+i==l))
21             {
22                 ++t;
23                 if(t==1)t1=i;
24             }
25         }
26     }
27     if(t==0)cout<<"-1";
28     else cout<<t<<" "<<t1;
29     return 0;
30 }

 

以上是关于1400统计单词数 (noip2011普及组第2题)的主要内容,如果未能解决你的问题,请参考以下文章

统计单词数(NOIP2011 普及组第二题)

P1308 [NOIP2011 普及组] 统计单词数

纪中10日T1 2300. noip普及组第一题模板题

瑞士轮(NOIP2011 普及组第三题)

数字统计(NOIP2010 普及组第一题)

海港(NOIP2016 普及组第三题)