zoukankan      html  css  js  c++  java
  • hdu 5007 Post Robot

                                                                       Post Robot

    Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/65536 K (Java/Others)
    Total Submission(s): 1885    Accepted Submission(s): 1338


    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!
     
    翻译:给定一段文字,对于每一个单词段,若单词段出现了“Apple”, “iPhone”, “iPod”, “iPad” 这四个词中一个,那么就需要打印“MAI MAI MAI!”,若出现了Sony,则需要打印“SONY DAFA IS GOOD!”
    思路:对于每一个词段,逐字符进行搜索切割即可。
    AC代码:
    #define _CRT_SECURE_NO_DEPRECATE
    #include<iostream>
    #include<algorithm>
    #include<string>
    #include<set>
    using namespace std;
    
    string s;
    int main() {
        while (cin>>s) {
            for (int i = 0; i < s.size();i++ ) {
                    string ss = s.substr(i, 5);
                    if (ss == "Apple") {
                        printf("MAI MAI MAI!
    ");
                    } 
                    ss = s.substr(i,4);
                     if (ss == "Sony") {
                        printf("SONY DAFA IS GOOD!
    ");
                    }
                    if (ss == "iPod"||ss=="iPad") {
                        printf("MAI MAI MAI!
    ");
                        
                    }
                    ss = s.substr(i, 6);
                    if (ss == "iPhone") {
                        printf("MAI MAI MAI!
    ");
                        
                     }
                    
                    
                
                
            }
      }
        return 0;
    }
  • 相关阅读:
    rpc的几种服务端模型分析
    ASP.NET MVC3在Visual Studio 2010中的变化
    HTML元素的ID和Name属性的区别
    Oracle日期类操作(格式 加减乘 取毫秒)
    快速原型工具
    C#4.0新特性dynamic\可选参数、命名参数
    WCF注册Windows Service
    不要在using语句中调用WCF服务
    C# 4.0 新特性dynamic、可选参数、命名参数等
    Windows内置系统账户Local system/Network service/Local Service
  • 原文地址:https://www.cnblogs.com/ZefengYao/p/6668686.html
Copyright © 2011-2022 走看看