HDU 5007 post robot (string SEARCH)

Source: Internet
Author: User
Tags printable characters

Question link: http://acm.hdu.edu.cn/showproblem.php? PID = 1, 5007


Problem descriptiondt is a big fan of digital products. He writes posts about original ical 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! ", 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.
 
InputA blog article described above, which contains only printable characters (whose ASCII code is between 32 and 127), Cr (ASCII code 13, '\ R' in C/C ++ ), LF (ASCII code 10, '\ n' in C/C ++), please process input until EOF. note all characters are Case Sensitive.

The size of the article does not exceed 8kb.
Outputoutput shocould contains comments generated by your script, one per line.
Sample Input
Apple bananaiPad lemon ApplepiSony233Tim cook is doubi from AppleiPhoneipadiPhone30 is so biiiiiiig Microsoftmakes 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!
 
Source2014 ACM/ICPC Asia Regional Xi 'an online


The Code is as follows:

#include<cstdio>#include<cstring>char str[20000];int main(){    int i;    while(gets(str))    {        int len=strlen(str);        for(i=0; i<len; i++)        {            if(str[i]=='A' && str[i+1]=='p' && str[i+2]=='p' && str[i+3]=='l' && str[i+4]=='e')            {                printf("MAI MAI MAI!\n");            }            if(str[i]=='i' && str[i+1]=='P' && str[i+2]=='h' && str[i+3]=='o' && str[i+4]=='n'&&str[i+5] == 'e')            {                printf("MAI MAI MAI!\n");            }            if(str[i]=='i' && str[i+1]=='P' && str[i+2]=='a' && str[i+3]=='d')            {                printf("MAI MAI MAI!\n");            }            if(str[i]=='i' && str[i+1]=='P' && str[i+2]=='o' && str[i+3]=='d')            {                printf("MAI MAI MAI!\n");            }            if(str[i]=='S' && str[i+1]=='o' && str[i+2]=='n' && str[i+3]=='y')            {                printf("SONY DAFA IS GOOD!\n");            }        }    }    return 0;}



HDU 5007 post robot (string SEARCH)

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.