zoukankan      html  css  js  c++  java
  • ZOJ 17届校赛 Knuth-Morris-Pratt Algorithm( 水题)

    In computer science, the Knuth-Morris-Pratt string searching algorithm (or KMP algorithm) searches for occurrences of a "word" W within a main "text string" S by employing the observation that when a mismatch occurs, the word itself embodies sufficient information to determine where the next match could begin, thus bypassing re-examination of previously matched characters.

    Edward is a fan of mathematics. He just learnt the Knuth-Morris-Pratt algorithm and decides to give the following problem a try:

    Find the total number of occurrence of the strings "cat" and "dog" in a given string s.

    As Edward is not familiar with the KMP algorithm, he turns to you for help. Can you help Edward to solve this problem?

    Input

    There are multiple test cases. The first line of input contains an integer T (1 ≤ T ≤ 30), indicating the number of test cases. For each test case:

    The first line contains a string s (1 ≤ |s| ≤ 1000).

    Output

    For each case, you should output one integer, indicating the total number of occurrence of "cat" and "dog" in the string.

    Sample Input

    7
    catcatcatdogggy
    docadosfascat
    dogdddcat
    catcatcatcatccat
    dogdogdogddddooog
    dcoagtcat
    doogdog
    

    Sample Output

    4
    1
    2
    5
    3
    1
    1
    

    Hint

    For the first test case, there are 3 "cat" and 1 "dog" in the string, so the answer is 4.

    For the second test case, there is only 1 "cat" and no "dog" in the string, so the answer is 1.

     水题

     1 #include<cstdio>
     2 #include<iostream>
     3 #include<algorithm>
     4 #include<cmath>
     5 #include<queue>
     6 #include<stack>
     7 #include<cstring>
     8 #include<string>
     9 using namespace std;
    10 
    11 char  a[1005];
    12 
    13 int main()
    14 {
    15     int T,len,sum,i;
    16     while(~scanf("%d",&T))
    17     {
    18         while(T--)
    19         {
    20             scanf("%s",&a);
    21             len=strlen(a);
    22             sum=0;
    23             for(i=0;i<len-2;i++)
    24             {
    25                 if(a[i]=='c'&&a[i+1]=='a'&&a[i+2]=='t')
    26                     sum++;
    27                 else if(a[i]=='d'&&a[i+1]=='o'&&a[i+2]=='g')
    28                     sum++;
    29             }
    30             printf("%d
    ",sum);
    31         }
    32     }
    33     return 0;
    34 }
  • 相关阅读:
    Fastjson
    react 使用createContext、Consumer 及 useContext 、Class.contextType父子组件共享数据
    使用useReducer 实现 todoList
    react中 useMemo与useCallback使用
    react17 函数组件 使用 better-scroll2.0 封装方法 及 使用
    react 执行 yarn build ,无法直接打开dist文件下的index
    react-redux 持久数据存储
    document.body.removeChild 获取到 symbol 标签
    react嵌套路由,并设置默认子路由
    Vagrant环境下配置node_exporter、mysqld_exporter、prometheus、grafana
  • 原文地址:https://www.cnblogs.com/Annetree/p/6690335.html
Copyright © 2011-2022 走看看