백준 c++ 1620 나는야 포켓몬 마스터 이다솜
1620번 나는야 포켓몬 마스터 이다솜
문제
문제 풀이
#include <iostream>
#include <string.h>
#include <map>
using namespace std;
void fast_io(void)
{
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
}
int main(void)
{
fast_io();
map<int, string> mpInt;
map<string, int> mpStr;
int n, m, idx = 0;
cin >> n >> m;
while (n--)
{
idx++;
string str;
cin >> str;
mpInt.insert(make_pair(idx, str));
mpStr.insert(make_pair(str, idx));
}
while (m--)
{
char arr[21];
cin >> arr;
if (isdigit(arr[0]))
{
int intArr = atoi(arr);
cout << mpInt.find(intArr)->second << "\n";
}
else
{
cout << mpStr.find(arr)->second << "\n";
}
}
}
벡터로 하다가 알고리즘분류에 맵이 있어서 맵으로 했다.
한개의 맵에서 키 로 밸류찾기 , 밸류로 키 찾기를 하고싶었으나 어려움이 있어서 두개를 만들었다.
Author And Source
이 문제에 관하여(백준 c++ 1620 나는야 포켓몬 마스터 이다솜), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@jaranda/백준-c-1620-나는야-포켓몬-마스터-이다솜저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)