文章
117
粉丝
69
获赞
827
访问
90.2k
#include<bits/stdc++.h>
using namespace std;
unordered_map<int, bool> st;
int n, m;
int main()
{
while(cin >> n)
{
for(auto k : st)
st[k.first] = false;
while(n --)
{
int x;
cin >> x;
st[x] = true;
}
cin >> m;
while(m --)
{
int x;
cin >> x;
if(st[x]) cout << "YES" << endl;
else cout << "NO" << endl;
}
}
return 0;
}
登录后发布评论
暂无评论,来抢沙发