https://www.acmicpc.net/problem/1764
#include <bits/stdc++.h>
#include <unordered_map>
#define endl "\n"
using namespace std;
int main(void) {
/************** C++ Init **************/
ios::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
/************** C++ Init **************/
int input1, input2;
int cnt = 0;
string str;
vector<string> v;
unordered_map<string, int> um;
cin >> input1 >> input2;
for (int i = 0; i < input1; i++) {
cin >> str;
um.insert({ str, 0 });
}
for (int i = 0; i < input2; i++) {
cin >> str;
if (um.count(str) != 0) um[str] = 1;
}
for (auto em : um) {
if (em.second == 1) v.push_back(em.first);
}
sort(v.begin(), v.end());
cout << v.size() << endl;
for (int i = 0; i < v.size(); i++) {
cout << v[i] << endl;
}
}
'알고리즘' 카테고리의 다른 글
C++ 알고리즘 - 백준 11399 ATM (0) | 2025.01.04 |
---|---|
C++ 알고리즘 - 백준 11047 동전 0 (0) | 2025.01.04 |
C++ 알고리즘 - 백준 1620 나는야 포켓몬 마스터 이다솜 (unordered_map) (0) | 2025.01.04 |
C++ 알고리즘 - 백준 11723 집합 (0) | 2025.01.04 |
C++ 알고리즘 - 백준 1654 랜선 자르기 (이분/매개변수 탐색) (0) | 2025.01.04 |