https://www.acmicpc.net/problem/17219
Dictionary를 이용하는 문제이다. key는 중복 불가능하다는 점을 이용하여 비밀번호를 찾아준다.
using System;
using System.Text;
namespace B17219
{
class Program
{
static void Main()
{
StreamReader sr = new StreamReader(Console.OpenStandardInput());
StreamWriter sw = new StreamWriter(Console.OpenStandardOutput());
StringBuilder sb = new StringBuilder();
int[] nm = Array.ConvertAll(sr.ReadLine().Split(' '), int.Parse);
Dictionary<string, string> dic = new Dictionary<string, string>();
string[] input;
for(int i = 0; i < nm[0]; i++)
{
input = sr.ReadLine().Split(' ');
dic.Add(input[0], input[1]);
}
for (int i = 0; i < nm[1]; i++) sb.Append(dic.GetValueOrDefault(sr.ReadLine()) + '\n');
sw.WriteLine(sb);
sr.Close();
sw.Flush();
sw.Close();
}
}
}
'알고리즘 > 백준 BOJ' 카테고리의 다른 글
[ BOJ/C# ] 1463 1로 만들기 (0) | 2023.09.18 |
---|---|
[ BOJ/C# ] 11723 집합 (0) | 2023.09.18 |
[ BOJ/C# ] 11399 ATM (0) | 2023.09.16 |
[ BOJ/C# ] 11047 동전 0 (0) | 2023.09.15 |
[ BOJ/C# ] 2577 숫자의 개수 (0) | 2023.09.14 |