[白俊]1620号
💻 C++ベース
https://www.acmicpc.net/problem/1620
https://www.acmicpc.net/problem/1620
#include <iostream>
#include <unordered_map>
#include <cctype>
using namespace std;
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(NULL);
int N, M;
cin >> N >> M;
unordered_map<string, int> m;
string idx[N + 1];
for (int i = 1; i <= N; i++)
{
string name;
cin >> name;
m[name] = i;
idx[i] = name;
}
while (M--)
{
string input;
cin >> input;
if (isdigit(input[0]))
{
cout << idx[stoi(input)] << '\n';
}
else
{
cout << m[input] << '\n';
}
}
return 0;
}
Reference
この問題について([白俊]1620号), 我々は、より多くの情報をここで見つけました https://velog.io/@jieun_han/백준-1620번テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol