[ 프로그래머스 ] 오픈채팅방
문제
https://school.programmers.co.kr/learn/courses/30/lessons/42888
풀이
주어진 문자열을 문자를 출력하는 문제로, 유저 아이디와 닉네임을 저장하고, 중복 닉네임과 닉네임 변경을 유저 아이디와 매치하기 위해 map을 활용하여 채팅방을 구현하였다.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#include <string>
#include <vector>
#include <algorithm>
#include <iostream>
#include <sstream>
#include <map>
using namespace std;
vector<string> solution(vector<string> record)
{
vector<string> answer;
vector<string> state;
map<string, string> user;
for (int i = 0; i < record.size(); i++)
{
istringstream stt(record[i]);
string st[3];
stt >> st[0] >> st[1] >> st[2];
if (st[0] == "Enter")
{
state.push_back("님이 들어왔습니다.");
answer.push_back(st[1]);
user[st[1]] = st[2];
}
else if (st[0] == "Leave")
{
state.push_back("님이 나갔습니다.");
answer.push_back(st[1]);
}
else
{
user[st[1]] = st[2];
}
}
for (int i = 0; i < answer.size(); i++)
{
answer[i] = user[answer[i]] + state[i];
}
return answer;
}
이 기사는 저작권자의 CC BY 4.0 라이센스를 따릅니다.