比赛 |
“Asm.Def战记之太平洋”杯 |
评测结果 |
|
题目名称 |
Asm.Def谈笑风生 |
最终得分 |
0 |
用户昵称 |
CloudTower |
运行时间 |
0.000 s |
代码语言 |
C++ |
内存使用 |
0.00 MiB |
提交时间 |
2018-11-07 17:19:29 |
显示代码纯文本
#include<iostream>
#include<cstdio>
#include<algorithm>
#include<set>
using namespace std;
set<string> t;
int m,cnt,z;
string s;
int main()
{
freopen("asm_talk.in","r",stdin);
freopen("asm_talk.out","w",stdout);
cin>>m;
while(m--)
{
cin>>z>>s;
if(z==1){
t.insert(s);
}
else {
bool flag=0;
cnt=-1;
for(int i=0;i<s.size();i++)
if(s[i]=='*'){
cnt=i;break;
}
if(cnt==-1){
if(t.find(s)!=t.end())
{
cout<<"YES"<<endl;
}
else cout<<"NO"<<endl;
continue;
}
for(char i='a';i<='z';i++)
{
s[cnt]=i;
if(t.find(s)!=t.end())
{
cout<<"YES"<<endl;flag=1;break;
}
}
if(!flag)cout<<"NO"<<endl;
}
}
return 0;
}