解题思路:
注意事项:
参考代码:
#include<bits/stdc++.h>
using namespace std;
int main()
{
set<string>s;
int n,k;
cin>>n>>k;
while(n--)
{
string x;
cin>>x;
s.insert(x);
}
while(k--)
{
string y;
cin>>y;
auto t=s.find(y);
if(t!=s.end()) cout<<"1"<<" ";
else cout<<"0"<<" ";
}
return 0;
}
0.0分
0 人评分
【蟠桃记】 (C语言代码)浏览:711 |
不会做的浏览:954 |
A+B for Input-Output Practice (III) (C语言代码)浏览:592 |
三角形 (C++代码)记忆化搜索浏览:1318 |
三角形 (C++代码)递推浏览:825 |
用筛法求之N内的素数。 (C语言代码)浏览:890 |
C语言程序设计教程(第三版)课后习题9.1 (C语言代码)浏览:710 |
蚂蚁感冒 (C语言代码)浏览:1408 |
数字游戏 (C++代码)浏览:1240 |
1054题解浏览:516 |