https://www.acmicpc.net/problem/14425
#include <bits/stdc++.h>
#include <unordered_map>
#define endl "\n"
using namespace std;
void CPP_INIT() {
ios::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
}
int main(void) {
CPP_INIT();
int input1, input2;
int cnt = 0;
string str;
unordered_map<string, bool> um;
cin >> input1 >> input2;
for (int i = 0; i < input1; i++) {
cin >> str;
um[str] = true;
}
for (int i = 0; i < input2; i++) {
cin >> str;
if (um[str]) cnt++;
}
cout << cnt;
}
'알고리즘' 카테고리의 다른 글
C++ 알고리즘 - 백준 1269 대칭 차집합 (0) | 2025.01.11 |
---|---|
C++ 알고리즘 - 백준 7785 회사에 있는 사람 (0) | 2025.01.11 |
C++ 알고리즘 - 백준 10815 숫자 카드 (0) | 2025.01.11 |
C++ 알고리즘 - 백준 19532 수학은 비대면강의입니다 (연립방정식 해 찾기) (0) | 2025.01.11 |
C++ 알고리즘 - 백준 1193 분수 찾기 (0) | 2025.01.11 |