https://www.acmicpc.net/problem/1764
중복이 없다 했으므로 set을 활용해봤다.
#include <iostream>
#include <string>
#include <set>
#include <algorithm>
#include <vector>
using namespace std;
int main()
{
ios::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
int n, m;
int count = 0;
cin >> n >> m;
set<string> s;
for (int i = 0; i < n; i++)
{
string input;
cin >> input;
s.insert(input);
}
vector<string> v;
for (int j = 0; j < m; j++)
{
string input;
cin >> input;
if (s.find(input) != s.end())
{
count++;
v.push_back(input);
}
}
sort(v.begin(), v.end());
cout << count << '\n';
for (int i = 0; i < count; i++)
{
cout << v.at(i) << '\n';
}
return 0;
}
'백준 문제풀이 > 실버4' 카테고리의 다른 글
백준 10825번 - 국영수 (0) | 2022.06.21 |
---|---|
백준 1302 - 베스트셀러 (0) | 2022.05.08 |
백준 1205번 - 등수 구하기 (0) | 2022.03.17 |
백준 1812번 - 사탕 (0) | 2022.03.17 |
백준 1543번 - 문서 검색 (0) | 2022.03.17 |