• Post Robot


    Problem Description
    DT is a big fan of digital products. He writes posts about technological products almost everyday in his blog.

    But there is such few comments of his posts that he feels depressed all the day. As his best friend and an excellent programmer, DT asked you to help make his blog look more popular. He is so warm that you have no idea how to refuse. But you are unwilling to read all of his boring posts word by word. So you decided to write a script to comment below his posts automatically.

    After observation, you found words “Apple” appear everywhere in his posts. After your counting, you concluded that “Apple”, “iPhone”, “iPod”, “iPad” are the most high-frequency words in his blog. Once one of these words were read by your smart script, it will make a comment “MAI MAI MAI!”, and go on reading the post. 

    In order to make it more funny, you, as a fan of Sony, also want to make some comments about Sony. So you want to add a new rule to the script: make a comment “SONY DAFA IS GOOD!” when “Sony” appears.
     
    Input
    A blog article described above, which contains only printable characters(whose ASCII code is between 32 and 127), CR(ASCII code 13, ‘ ’ in C/C++), LF(ASCII code 10, ‘ ’ in C/C++), please process input until EOF. Note all characters are case sensitive.

    The size of the article does not exceed 8KB.
     
    Output
    Output should contains comments generated by your script, one per line.
     
    Sample Input
    Apple bananaiPad lemon ApplepiSony
    233
    Tim cook is doubi from Apple
    iPhoneipad
    iPhone30 is so biiiiiiig Microsoft
    makes good App.
     
    Sample Output
    MAI MAI MAI!
    MAI MAI MAI!
    MAI MAI MAI!
    SONY DAFA IS GOOD!
    MAI MAI MAI!
    MAI MAI MAI!
    MAI MAI MAI!
     
     1 #include <stdio.h>
     2 #include <string.h>
     3 
     4 int main(){
     5     char c;
     6     char s[1000];
     7     int i;
     8     int length;
     9 
    10     while(scanf("%c",&c)!=EOF){
    11         i=0;
    12         while(c!='
    '){
    13             s[i]=c;
    14             i++;
    15             c=getchar();
    16         }
    17         s[i]='';
    18         length=strlen(s);
    19 
    20         for(i=0;i<length;i++){
    21             if(i+4<length && s[i]=='A' && s[i+1]=='p' && s[i+2]=='p' && s[i+3]=='l' && s[i+4]=='e')
    22                 printf("MAI MAI MAI!
    ");
    23 
    24             if(i+5<length && s[i]=='i' && s[i+1]=='P' && s[i+2]=='h' && s[i+3]=='o' && s[i+4]=='n' && s[i+5]=='e')
    25                 printf("MAI MAI MAI!
    ");
    26 
    27             if(i+3<length && s[i]=='i' && s[i+1]=='P' && s[i+2]=='o' && s[i+3]=='d')
    28                 printf("MAI MAI MAI!
    ");
    29 
    30             if(i+3<length && s[i]=='i' && s[i+1]=='P' && s[i+2]=='a' && s[i+3]=='d')
    31                 printf("MAI MAI MAI!
    ");
    32 
    33             if(i+3<length && s[i]=='S' && s[i+1]=='o' && s[i+2]=='n' && s[i+3]=='y')
    34                 printf("SONY DAFA IS GOOD!
    ");
    35         }
    36 
    37         
    38 
    39 
    40     }
    41     return 0;
    42 }
  • 相关阅读:
    【刷题】洛谷 P2764 最小路径覆盖问题
    【刷题】BZOJ 3546 [ONTAK2010]Life of the Party
    【刷题】BZOJ 3175 [Tjoi2013]攻击装置
    【刷题】BZOJ 4516 [Sdoi2016]生成魔咒
    【刷题】SPOJ 1811 LCS
    【刷题】洛谷 P3804 【模板】后缀自动机
    【刷题】SPOJ 8222 NSUBSTR
    (98)Wangdao.com_第三十天_拖拉事件
    ECMA Script 6_必须要知道的基础
    (97)Wangdao.com_第三十天_触摸事件
  • 原文地址:https://www.cnblogs.com/zqxLonely/p/4087872.html
Copyright © 2020-2023  润新知