김진영이 듣도 못한 사람의 명단과, 보도 못한 사람의 명단이 주어질 때, 듣도 보도 못한 사람의 명단을 구하는 프로그램을 작성하시오.
첫째 줄에 듣도 못한 사람의 수 N, 보도 못한 사람의 수 M이 주어진다. 이어서 둘째 줄부터 N개의 줄에 걸쳐 듣도 못한 사람의 이름과, N+2째 줄부터 보도 못한 사람의 이름이 순서대로 주어진다. 이름은 띄어쓰기 없이 알파벳 소문자로만 이루어지며, 그 길이는 20 이하이다. N, M은 500,000 이하의 자연수이다.
듣도 못한 사람의 명단에는 중복되는 이름이 없으며, 보도 못한 사람의 명단도 마찬가지이다.
듣보잡의 수와 그 명단을 사전순으로 출력한다.
#define _CRT_SECURE_NO_WARNINGS
#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
using namespace std;
int main()
{
//freopen("test.txt", "r", stdin);
int N, M;
cin >> N >> M;
vector<string> vec_listen;
vector<string> vec_result;
for (int i = 0; i < N; i++)
{
string temp;
cin >> temp;
vec_listen.push_back(temp);
}
sort(vec_listen.begin(), vec_listen.end());
for (int j = 0; j < M; j++)
{
string temp;
cin >> temp;
if (binary_search(vec_listen.begin(), vec_listen.end(), temp))
{
vec_result.push_back(temp);
}
}
sort(vec_result.begin(), vec_result.end());
cout << vec_result.size() << "\n";
for (auto x : vec_result)
cout << x << "\n";
return 0;
}
이진탐색으로 같은 단어를 찾는 것이 핵심인듯,,
** hashmap과 hashtable 차이 정리하기