반응형
https://www.acmicpc.net/problem/1764
풀이 1 : 중복을 제거하고 사전순으로 정렬해주는 set이라는 자료구조를 사용했습니다.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
#include <iostream>
#include <string>
#include <set>
using namespace std;
string s;
set<string> a;
set<string> ans;
//중복을 제거하고 사전순으로 정렬해주는 set이라는 자료구조를 사용했습니다.
int main() {
ios_base::sync_with_stdio(0);
cin.tie(0);
int n,m;
cin >> n >> m;
for (int i = 0; i < n; i++)
{
cin >> s;
a.insert(s);
}
for (int i = 0; i < m; i++)
{
cin >> s;
auto it = a.find(s);
if (it != a.end())//이미 존재한다면
ans.insert(s);
}
cout << ans.size() << '\n';
for (auto it = ans.begin(); it != ans.end(); it++)
cout << *it << endl;
}
|
cs |
풀이 2 : 우선순위 큐와 map으로 풀었습니다.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
#include <iostream>
#include <algorithm>
#include <cstring>
#include <queue>
#include <string>
#include <map>
using namespace std;
int main() {
int n, m;
map <string, int> ma;
cin >> n >> m;
for (int i = 0; i < n; i++) {
string k;
cin >> k;
ma[k] = 1;
}
priority_queue <string,vector<string>, greater<string> >pq;
for (int i = 0; i < m; i++) {
string k;
cin >> k;
if (ma[k] == 1)
pq.push(k);
}
cout << pq.size()<<'\n';
while (!pq.empty()) {
cout << pq.top() << '\n';
pq.pop();
}
}
|
cs |
'Algorithm > String' 카테고리의 다른 글
(C++) - 백준(BOJ) 4949번 : 균형잡힌 세상 답 (0) | 2020.08.23 |
---|---|
(C++) - 백준(BOJ) 2562번 : ACM 호텔 답 (0) | 2020.07.24 |
(C++) - 백준(BOJ)코딩 10769번 : 행복한지 슬픈지 답 (0) | 2017.04.15 |
(C++) - 백준(BOJ)코딩 2386번 : 도비의 영어 공부 (0) | 2017.04.02 |
(C++) - 백준(BOJ) 3059번 : 등장하지 않는 문자의 합 답 (2) | 2017.04.02 |