Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Mathf.Clamp
- LayerMask
- 이진트리
- 유니티 ResourceManager
- 유니티 시야 가림
- 소스코드 줄번호
- InputManager
- LFS
- 알고스팟
- 유니티 Collision
- 유니티 Rotate
- 유니티 Vector3
- c++
- 유니티
- Raycast
- 유니티 InputManager
- 유니티 오브젝트 풀링
- 오브젝트 풀링
- LookRotation
- 유니티 리소스매니저
- ML-Agents
- 깊이 우선 탐색
- unity
- 너비 우선 탐색
- 코드블럭 테마
- c++ 문자열 자르기
- git-lfs
- eulerAngles
- 유니티 머신러닝
- Quaternion.Euler
Archives
- Today
- Total
무민은귀여워
[프로그래머스] 2019 KAKAO BLIND RECRUITMENT 오픈채팅방 본문
반응형
1. 문제
https://programmers.co.kr/learn/courses/30/lessons/42888
2. 풀이
1. 처음 record를 읽으며, 유저 아이디 : 닉네임 map 을 만든다. enter, change의 경우 이름 변경하여 저장.
2. 다시 recored를 읽으며 result 문장 작성
#include <iostream>
#include <vector>
#include <sstream>
#include <map>
using namespace std;
vector<string> solution(vector<string> record) {
vector<string> answer;
map<string, string> nameMap;
for (auto rec : record)
{
string sort = "", id = "", name = "";
stringstream iss(rec);
for (int i = 0; i < 3; i++)
{
if (i == 0)
iss >> sort;
if (i == 1) // id
iss >> id;
if (i == 2) // name
iss >> name;
}
nameMap.insert(make_pair(id, name));
if (sort.compare("Change") == 0 || sort.compare("Enter") == 0)
{
nameMap.find(id)->second = name;
}
}
for (auto rec : record)
{
string sort = "", id = "", name = "";
stringstream iss(rec);
for (int i = 0; i < 3; i++)
{
if (i == 0)
iss >> sort;
if (i == 1) // id
iss >> id;
if (i == 2) // name
iss >> name;
}
string str = "";
if (sort.compare("Enter") == 0)
{
str += nameMap.find(id)->second;
str += "님이 들어왔습니다.";
answer.push_back(str);
}
else if (sort.compare("Leave") == 0)
{
str += nameMap.find(id)->second;
str += "님이 나갔습니다.";
answer.push_back(str);
}
}
return answer;
}
반응형
'IT > 알고리즘' 카테고리의 다른 글
[프로그래머스] 2022 KAKAO BLIND RECRUITMENT 신규 아이디 추천 (0) | 2022.05.20 |
---|---|
[프로그래머스] 2022 KAKAO BLIND RECRUITMENT 신고 결과 받기 (0) | 2022.05.16 |
시간복잡도 big-O big-Ω big-θ 공간복잡도 (0) | 2021.05.18 |
소수 찾기 - 에라토스체네스 체 (0) | 2021.05.18 |
깊이 우선 탐색, 너비 우선 탐색 구현 수도코드 (0) | 2021.05.18 |
Comments