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
- 2020 KAKAO BLIND RECRUITMENT
- 우분투
- MySQL
- 탄막 이동
- mysqld.sock
- 수 만들기
- 마우스 따라다니기
- 탄막 스킬 범위
- 단어 수학
- 토글 그룹
- c#
- SWEA
- 18249
- 걷는건귀찮아
- 백준
- 3273
- 유니티
- 회의실 배정
- 문자열 압축
- 강의실2
- 원형
- 탄막
- 윈도우
- 3344
- 알고리즘
- 그리디알고리즘
- 자료구조 목차
- AI Hub
- 영상 프레임 추출
- 알고리즘 목차
Archives
- Today
- Total
와이유스토리
[DFS 순열] 프로그래머스 단어 변환 C++ 본문
https://programmers.co.kr/learn/courses/30/lessons/43163
#include <string>
#include <vector>
#define MAX 51
using namespace std;
int res = MAX;
bool check[MAX];
void dfs(string begin, string target, vector<string> words, int ans) {
if (target == begin) {
res = min(res, ans);
return;
}
for (int i = 0; i < words.size(); i++) {
int cnt = 0;
for (int j = 0; j < words[i].size(); j++) {
if (begin[j] != words[i][j]) cnt++;
if (cnt >= 2) break;
}
// 다른 알파벳이 하나여야 수정 가능
if (cnt == 1){
if (!check[i]) {
check[i] = true;
dfs(words[i], target, words, ans + 1);
check[i] = false;
}
}
}
}
int solution(string begin, string target, vector<string> words) {
dfs(begin, target, words, 0);
if (res == MAX) res = 0;
return res;
}
'코딩테스트 > 그래프|트리' 카테고리의 다른 글
[BFS 반복] 백준 16263번 아기 상어 C++ (0) | 2022.01.21 |
---|---|
[DFS 순열] 프로그래머스 여행 경로 C++ (0) | 2022.01.20 |
[DFS 단순 반복] 프로그래머스 네트워크 C++ (0) | 2022.01.20 |
[DFS 단순] 프로그래머스 타겟 넘버 C++ (0) | 2022.01.20 |
[DFS, BFS] 백준 12100 2048(Easy) C++ (0) | 2022.01.06 |
Comments