Study/Baekjoon

[백준/C++] 1620 나는야 포켓몬 마스터 이다솜

에린_1 2024. 2. 28. 01:30
728x90

1620 나는야 포켓몬 마스터 이다솜

#include <bits/stdc++.h>
using namespace std;
string name[100001];

int main()
{
	ios_base::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL);
	int n, m;
	cin >> n >> m;
	map<string, int> poket;

	for (int i = 0; i < n; ++i)
	{
		string tmp;
		cin >> tmp;
		poket.insert({ tmp,i });
		name[i] = tmp;
	}
	for (int i = 0; i < m; ++i)
	{
		string tmp;
		cin >> tmp;
		if (65 > tmp[0])
			cout << name[stoi(tmp)-1] << '\\n';
		else
			cout << poket.find(tmp)->second + 1 << '\\n';
	}
	return 0;
}
  • map 함수를 쓰면 간단하게 처리할 수 있다.
728x90

'Study > Baekjoon' 카테고리의 다른 글

[백준/C++] 1012 유기농 배추  (0) 2024.03.01
[백준/C++] 1260 DFS와 BFS  (0) 2024.02.29
[백준/C++] 1003 피보나치 함수  (0) 2024.02.26
[백준/C++] 1654 랜선자르기  (0) 2024.02.26
[백준/C++] 10816 숫자 카드2  (0) 2024.02.25