0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-12-24 03:31:59 +00:00

C - Route Map

https://atcoder.jp/contests/abc236/submissions/28733433
This commit is contained in:
Baoshuo Ren 2022-01-23 20:11:30 +08:00
parent 2cb9668697
commit 5ef94afc51
Signed by: baoshuo
GPG Key ID: 70F90A673FB1AB68

26
AtCoder/ABC236/C/C.cpp Normal file
View File

@ -0,0 +1,26 @@
#include <iostream>
#include <map>
#include <string>
using std::cin;
using std::cout;
using std::endl;
int n, m;
std::string s[100005], a;
std::map<std::string, bool> map;
int main() {
cin >> n >> m;
for (int i = 1; i <= n; i++) {
cin >> s[i];
}
for (int i = 1; i <= m; i++) {
cin >> a;
map[a] = true;
}
for (int i = 1; i <= n; i++) {
cout << (map[s[i]] ? "Yes" : "No") << endl;
}
return 0;
}