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
- 정렬알고리즘
- 약참조
- UML관련
- stl
- 강참조
- 애셋로드
- dataasset
- C++
- 스마트포인터
- enumasByue
- BFS
- map
- 언리얼가비지컬렉터
- 정렬
- moreeffectiveC++
- C++최적화
- UE_LOG
- 크리티컬섹션
- UELOG
- 선택정렬
- 델리게이트
- 람다사용정렬
- 데이터애셋
- UE4 커스텀로그
- 자료구조
- 람다
- 언리얼엔진구조체
- unorder_map
- 프로그래머스
- 알고리즘
Archives
- Today
- Total
기억을 위한 기록들
[프로그래머스 lv 2 ] - 영어 끝말잇기 본문
https://programmers.co.kr/learn/courses/30/lessons/12981
#include <string>
#include <vector>
#include <map>
using namespace std;
vector<int> solution(int n, vector<string> words) {
vector<int> answer;
map<string,int> m;
int size=words.size();
int i;
char lastWord;
bool find=false;
for(i=0;i<size;i++)
{
string curString=words[i];
m[curString]+=1;
if(m[curString]==2)
{
find=true;
break;
}else if( 0<i&&lastWord!=curString[0])
{
find=true;
break;
}
lastWord=curString[curString.size()-1];
}
if(find==false)
{
answer.push_back(0);
answer.push_back(0);
}else
{
answer.push_back(i%n+1);
answer.push_back(i/n+1);
}
return answer;
}
'Coding Test - cpp > String' 카테고리의 다른 글
[프로그래머스 lv 1 ] - 크기가 작은 부분문자열 (C++) (0) | 2023.11.16 |
---|---|
[프로그래머스 lv 1 ] - 4주차 직업군 추천 (0) | 2021.10.01 |
[프로그래머스 lv 1 ] - [1차] 비밀지도 (0) | 2021.09.13 |
[프로그래머스 lv 2 ] - 오픈채팅방 (0) | 2021.09.08 |
[HackerRank/C++] Repeated String (0) | 2021.07.25 |