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 |
Tags
- map
- 델리게이트
- 자료구조
- 데이터애셋
- UE_LOG
- enumasByue
- C++
- moreeffectiveC++
- C++최적화
- 애셋로드
- stl
- 언리얼가비지컬렉터
- 프로그래머스
- 선택정렬
- 알고리즘
- UELOG
- UE4 커스텀로그
- 크리티컬섹션
- BFS
- 람다사용정렬
- 람다
- dataasset
- unorder_map
- 언리얼엔진구조체
- 스마트포인터
- 정렬
- 정렬알고리즘
- UML관련
- 강참조
- 약참조
Archives
- Today
- Total
기억을 위한 기록들
[프로그래머스 lv2] 단어 변환- c++ 본문
programmers.co.kr/learn/courses/30/lessons/43163
#include <string>
#include <vector>
#include <iostream>
using namespace std;
int answer = 214000000;
int check[51];
void D(string begin, string target, vector<string> words, int cnt = 0)
{
int n = words.size();
for (int i = 0; i < n; i++)
{
int checkNum = 0;
if (begin == words[i])
continue;
for (int j = 0; j < begin.size(); j++)
{
if (begin[j] != words[i].at(j))
{
checkNum++;
}
}
if (checkNum == 1) //1개이니 정답인지 확인
{
if (words[i] == target && answer > cnt + 1)
{
answer = cnt + 1;
return;
}
if (!check[i])
{
check[i] = true;
D(words[i], target, words, cnt + 1);
}
}
}
}
int solution(string begin, string target, vector<string> words) {
D(begin, target, words);
if (214000000 == answer)
{
return 0;
}
return answer;
}
'Coding Test - cpp > DFS' 카테고리의 다른 글
[백준 9466: 텀 프로젝트] - C++ (0) | 2021.02.19 |
---|---|
[백준 2210: 숫자판 점프] - C++ (0) | 2021.02.18 |
[백준 1937: 욕심쟁이 판다] - C++ (0) | 2021.02.15 |
[백준 2573: 빙산] - C++ (0) | 2021.02.15 |
[백준 10026: 적록색약] - C++ (0) | 2021.02.15 |