1620번 나는야 포켓몬 마스터 이다솜 문제 문제 풀이 #include #include #include 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 mpInt; map 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]; ci..