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
- 스마일게이트
- 서버개발캠프
- 유니온파인드
- 카카오
- Smilegate
- c++
- 1편
- 식단
- 보석쇼핑
- 소감
- IBK기업은행 #기업은행 #디지털 #직무 #정리
- 코테
- 백준
- BFS
- 삼성 #코테 #2020상반기 #c++
- 코딩테스트
- 중반부
- 알고리즘
- Union-find
- Algorithm
- 카카오인턴
- 투포인터
- BaekJoon
- LIS #Algorithm #요소추적
Archives
- Today
- Total
짱아의 개발 기록장
프로그래머스. 단어변환(c++) / DFS+백트래킹 본문
반응형
[메인 로직]
words벡터에 있는 단어들과 비교대상이 되는 단어를 비교하여 한 개의 알파벳만 차이가 나는 지 확인한다. => check함수
그리고 이미 방문했던 단어들은 제외시킨다. => visited배열
이렇게 DFS+백트래킹을 구현하면 된다.
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
#include <string>
#include <vector>
#include <climits>
#include <iostream>
using namespace std;
int visited[51] = {0, };
int answer = INT_MAX;
// 1개의 글자만 차이나는지 확인
bool check(string s1, string s2){
if(s1.size()!=s2.size()){
return false;
}
int num = 0;
for(int i=0; i<s1.size(); i++){
if(s1[i]!=s2[i]){
num++;
}
}
if(num==1){
return true;
}
return false;
}
void dfs(string s, int cnt, string target, vector<string> words)
{
if(s==target){
answer = min(answer, cnt);
return;
}
for(int i=0; i<words.size(); i++){
if(check(s, words[i]) && !visited[i]){
visited[i] = true;
dfs(words[i], cnt+1, target, words);
visited[i] = false;
}
}
}
int solution(string begin, string target, vector<string> words) {
for(int i=0; i<words.size(); i++){
if(check(begin, words[i]) && !visited[i]){
visited[i] = true;
dfs(words[i], 1, target, words);
visited[i] = false;
}
}
if(answer==INT_MAX){
answer = 0;
}
return answer;
}
|
cs |
반응형
'Algorithm > Programmers' 카테고리의 다른 글
프로그래머스. 추석 트래픽(c++) / String (0) | 2021.03.02 |
---|---|
프로그래머스. 큰 수(c++) / Greedy (0) | 2021.03.01 |
프로그래머스. 순위(c++) / 그래프+플로이드와샬 (0) | 2021.02.27 |
프로그래머스. 여행경로(c++) / DFS + 백트래킹 (0) | 2021.02.27 |
(강추)프로그래머스. 구명보트(c++) / Greedy+Two pointer (0) | 2021.02.21 |
Comments