[SWEA] 2948. 문자열 교집합 (C++, 해시)
728x90
반응형
해시에 첫 집합의 문자열들을 저장하고 두 번째 문자열 집합을 입력받을 때 검색해서
해시에 들어있는 문자열의 개수를 세준다.
#define _CRT_SECURE_NO_DEPRECATE
#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
#include <unordered_map>
using namespace std;
int main(void) {
ios::sync_with_stdio(false);
cin.tie(NULL);
int t, n, m;
cin >> t;
for (int tc = 1; tc <= t; tc++) {
cin >> n >> m;
string s;
unordered_map<string, string> hash;
int cnt = 0;
for (int i = 0; i < n; i++) {
cin >> s;
hash.insert({ s,s });
}
for (int i = 0; i < m; i++) {
cin >> s;
if (hash.find(s) != hash.end()) {
cnt++;
}
}
cout << "#" << tc << " " << cnt<<"\n";
}
return 0;
}
728x90
반응형
'swexpert' 카테고리의 다른 글
[swexpert] 7510. 상원이의 연속합 (c++, 누적합) (0) | 2021.10.18 |
---|---|
[swexpert] 1248. 공통조상 (C++, 트리, BFS, DFS) (0) | 2021.10.12 |
[SWEA] 1256. K번째 접미어 (C++) (0) | 2021.10.06 |
[swexpert] 1230. 암호문3 (C++, 연결리스트) (0) | 2021.10.05 |
[SWEXPERT] 1232. 사칙연산 (이진트리, C++, D4) (0) | 2021.10.01 |
TAGS.