https://www.acmicpc.net/problem/14425
#include <iostream>
#include <map>
#include <string>
using namespace std;
int main()
{
std::cin.tie(NULL);
std::ios::sync_with_stdio(false);
int n, m;
cin >> n >> m;
int count = 0;
map<string, int> ma;
for (int i = 0; i < n; i++)
{
string temp;
cin >> temp;
ma.insert({ temp, 0 });
}
for (int i = 0; i < m; i++)
{
string temp;
cin >> temp;
if (ma.find(temp) != ma.end())
{
count++;
}
}
cout << count;
}
'백준 문제풀이 > 실버3' 카테고리의 다른 글
백준 11659번 - 구간 합 구하기 4 (0) | 2022.08.04 |
---|---|
백준 1213번 - 팰린드롬 만들기 (0) | 2022.07.05 |
백준 2108번 - 통계학 (0) | 2022.06.01 |
백준 1929번 - 소수 구하기 (0) | 2022.03.02 |
백준 3085번 - 사탕 게임 (0) | 2022.01.16 |