Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- moreeffectiveC++
- 람다
- enumasByue
- 스마트포인터
- UML관련
- 크리티컬섹션
- 델리게이트
- UELOG
- 알고리즘
- C++
- 언리얼가비지컬렉터
- 람다사용정렬
- dataasset
- 애셋로드
- UE_LOG
- BFS
- unorder_map
- 언리얼엔진구조체
- 자료구조
- 프로그래머스
- C++최적화
- map
- 강참조
- 데이터애셋
- 선택정렬
- stl
- 약참조
- 정렬
- 정렬알고리즘
- UE4 커스텀로그
Archives
- Today
- Total
기억을 위한 기록들
[프로그래머스 lv 2 ] - 오픈채팅방 본문
https://programmers.co.kr/learn/courses/30/lessons/42888
#include <string>
#include <vector>
#include <unordered_map>
#include <queue>
using namespace std;
string strTok(string& str,int& i)
{
string result;
for( ;i<str.size();i++)
{
if(str[i]==' ')
{
break;
}
result+=str[i];
}
return result;
}
vector<string> solution(vector<string> record) {
vector<string> answer;
unordered_map<string,string> m; //uid,nick
queue<pair<char,string>> q; //명령어 저장
//전체 명령 파악하기
for(auto a: record)
{
string curRecord=a; //현재 기록 (ex : Enter인지, Leave인지 등등..)
string uid;
string nick;
string curOrder;
int i=0;
if(curRecord[0]=='E')
{
i=6;
uid=strTok(curRecord,i);
i++;
nick=strTok(curRecord,i);
q.push( pair<char,string>('E',uid) );
}else if(curRecord[0]=='L')
{
i=6;
uid=strTok(curRecord,i);
curOrder+=uid;
q.push( pair<char,string>('L',uid) );
nick = m[uid];
}else if(curRecord[0]=='C')
{
curOrder+="C ";
i=7;
uid=strTok(curRecord,i);
i++;
nick=strTok(curRecord,i);
}
//최종 닉네임 map
m[uid]=nick;
}
//들어왔던 명령 순서대로 출력 저장하기
while( !q.empty() )
{
char order = q.front().first;
string id = q.front().second;
q.pop();
string result;
if( order == 'E' )
{
result = m[id] + "님이 들어왔습니다.";
answer.push_back( result );
}if( order == 'L' )
{
result = m[id] + "님이 나갔습니다.";
answer.push_back( result );
}
}
return answer;
}
'Coding Test - cpp > String' 카테고리의 다른 글
[프로그래머스 lv 2 ] - 영어 끝말잇기 (0) | 2021.09.25 |
---|---|
[프로그래머스 lv 1 ] - [1차] 비밀지도 (0) | 2021.09.13 |
[HackerRank/C++] Repeated String (0) | 2021.07.25 |
[백준 11721: 열 개씩 끊어 출력하기] - C++ (0) | 2021.03.25 |
[백준 11718: 그대로 출력하기] - C++ (0) | 2021.03.05 |