比赛 |
“Asm.Def战记之太平洋”杯 |
评测结果 |
AAAAAAAAAA |
题目名称 |
Asm.Def谈笑风生 |
最终得分 |
100 |
用户昵称 |
Binary10 |
运行时间 |
0.719 s |
代码语言 |
C++ |
内存使用 |
0.31 MiB |
提交时间 |
2015-11-02 09:17:50 |
显示代码纯文本
#include<cstdio>
#include<string>
#include<iostream>
#include<set>
using namespace std;
set<string> s;
int main()
{
freopen("asm_talk.in", "r", stdin);
freopen("asm_talk.out", "w", stdout);
ios::sync_with_stdio(false);
int m, op;
string str;
cin >> m;
for(int i = 0; i < m; i++){
cin >> op >> str;
if(op == 1) s.insert(str);
else {
int pos = str.find('*');
bool ok = false;
if(pos != string::npos){
for(char ch = 'a'; ch <= 'z'; ch++){
str[pos] = ch;
if(s.count(str)){
ok = true;
break;
}
}
}else if(s.count(str)) ok = true;
if(ok) puts("YES"); else puts("NO");
}
}
return 0;
}