HDU 5007 Post Robot
Posted mostiray
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了HDU 5007 Post Robot相关的知识,希望对你有一定的参考价值。
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!
";
else
cout << "MAI MAI MAI!
";
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的主要内容,如果未能解决你的问题,请参考以下文章