码迷,mamicode.com
首页 > 其他好文 > 详细

HDU 5007 Post Robot

时间:2020-07-04 01:02:40      阅读:56      评论:0      收藏:0      [点我收藏+]

标签:字符串   pad   out   npos   iphone   函数   str   show   ++i   

题目地址

STL string没有能查多个字符串的函数,但可以查多个字符。

代码

#include <algorithm>
#include <iostream>
#include <string>
using namespace std;
const string a[] = {"Apple", "iPhone", "iPod", "iPad", "Sony"};
string str;
inline void cal(int pos) {
    for (int i = 0; i < 5; ++i) {
        if (str.substr(pos, a[i].size()) == a[i]) {
            if (i == 4)
                cout << "SONY DAFA IS GOOD!\n";
            else
                cout << "MAI MAI MAI!\n";
            return;
        }
    }
}
int main() {
    ios::sync_with_stdio(false);
    cin.tie(NULL);
    while (getline(cin, str)) {
        int pos = 0;
        while ((pos = str.find_first_of("AiS", pos)) != string::npos) {
            cal(pos);
            ++pos;
        }
    }
    return 0;
}

HDU 5007 Post Robot

标签:字符串   pad   out   npos   iphone   函数   str   show   ++i   

原文地址:https://www.cnblogs.com/mostiray/p/13233196.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!