포스트

[ 프로그래머스 ] 단어 변환

문제


https://school.programmers.co.kr/learn/courses/30/lessons/43163

풀이


두 개의 단어 begin, target을 한 번에 한 개의 알파벳만 바꿔 주어진 문자열 집합 words의 원소 중 하나로 바꾸는 것을 반복하여 같은 문자로 변환하는 과정 중 가장 짧은 변환 과정을 찾는 문제이다. 따라서 DFS를 통해 words와 하나의 알파벳만 다른 경우의 수를 찾고, 변환하는 과정을 반복하여 최소 변환 과정을 찾는다.

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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
#include <string>
#include <vector>

using namespace std;

int changeCnt = 0;

bool IsOneDifferent(string a, string b)
{
    int cnt = 0;

    for (int i = 0; i < a.size(); i++)
    {
        if (a[i] == b[i])
        {
            cnt++;
        }
    }

    if (cnt != a.size() - 1)
    {
        return false;
    }

    return true;
}

void Dfs(string begin, string target, vector<string> words)
{
    while (begin != target)
    {
        if (IsOneDifferent(begin, target))
        {
            changeCnt++;
            break;
        }

        for (int i = 0; i < words.size(); i++)
        {
            if (IsOneDifferent(begin, words[i]))
            {
                begin = words[i];
                words.erase(words.begin() + i);
                changeCnt++;
                break;
            }
        }
    }
}

int solution(string begin, string target, vector<string> words) 
{
    int answer = 0;
    int cnt = 0;

    for (int i = 0; i < words.size(); i++)
    {
        if (words[i] == target)
        {
            cnt++;
            break;
        }
    }

    if (cnt == 0)
    {
        return 0;
    }

    Dfs(begin, target, words);
    answer = changeCnt;

    return answer;
}


이 기사는 저작권자의 CC BY 4.0 라이센스를 따릅니다.