[백준] 1620번 나는야 포켓몬 마스터 이다솜 (C++, 해시)
728x90
반응형
번호도 문자열 형태로 저장해버림
#define _CRT_SECURE_NO_DEPRECATE
#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
#include <unordered_map>
using namespace std;
bool comp(string a,string b) {
return a>b;
}
int main(void) {
ios::sync_with_stdio(false);
cin.tie(NULL);
int n,m;
cin >> n>>m;
unordered_map<string, string> poketmon;
string name;
for (int i = 0; i < n; i++) {
cin >> name;
poketmon.insert({ name,to_string(i + 1) });
poketmon.insert({ to_string(i + 1),name });
}
for (int i = 0; i < m; i++) {
cin >> name;
cout << poketmon[name] << "\n";
}
return 0;
}
728x90
반응형
'백준' 카테고리의 다른 글
[백준] 17219번 비밀번호 찾기 (C++, 해시) (0) | 2021.10.06 |
---|---|
[백준] 13414번 수강신청 (C++, 해시) (0) | 2021.10.06 |
[백준] 1012번 유기농 배추 (C++, BFS) (0) | 2021.10.06 |
[백준] 5430번 AC (C++ , DEQUE) (0) | 2021.10.05 |
[백준] 1021번 회전하는 큐 (C++, DEQUE) (0) | 2021.10.05 |
TAGS.