Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 30 | 31 |
Tags
- 버킷 정렬
- Stack 이란
- qorwns
- 백준 17822
- 풀이
- 1764
- 5397
- 백준 1406
- dfs
- 백준 17779
- 게리멘더링2
- 백준 5397
- 백준 2447
- 백준 17471
- 해시 구현
- 백준
- 시간 복잡도
- 원판 돌리기
- 자료구조
- 해시구현
- heap
- 스택의 특징
- c#
- ㅣ풀이
- AVL 시간 복잡도
- 별 찍기 10
- 백준 1158
- 조세퍼스 순열
- 구현
- C/C++ 구현
Archives
- Today
- Total
홍시홍의 프로그래밍
[백준 1764] 듣보잡 본문
https://www.acmicpc.net/problem/1764
요구사항
1. 듣지도 보지도 못한 사람 구하기
- 듣지도 못한 사람 주어질 때 각 value++
- 보지도 못한 사람 주어질 때 각 value++
2. 정답 출력
#include <iostream>
#include <map>
#include <string>
#include <vector>
#include <algorithm>
using namespace std;
map<string, int> ma;
vector<string> v;
int main()
{
ios_base::sync_with_stdio(false);
int n, m;
cin >> n >> m;
for (int i = 0; i < n; i++)
{
string str;
cin >> str;
ma[str]++;
}
for (int i = 0; i < m; i++)
{
string str;
cin >> str;
ma[str]++;
if (ma[str] == 2)
{
v.push_back(str);
}
}
sort(v.begin(), v.end());
cout << v.size() << endl;
for (int i=0 ; i <v.size();i++)
{
cout << v.at(i) << endl;
}
}
'알고리즘 문제풀이 > 백준' 카테고리의 다른 글
[백준 1920] 수 찾기 (0) | 2019.11.20 |
---|---|
[백준 1764] 듣보잡(해시 구현) (0) | 2019.11.20 |
[백준 1158] 조세퍼스 문제 (0) | 2019.11.18 |
[백준 1158] 조세퍼스 문제 (0) | 2019.11.16 |
[백준 17837] 새로운 게임2 (0) | 2019.11.16 |
Comments