mun dev

[Programmers] 단어변환 자바(Java) 본문

알고리즘/프로그래머스

[Programmers] 단어변환 자바(Java)

mndev 2023. 9. 26. 15:56

문제설명

두 개의 단어 begin, target과 단어의 집합 words가 있습니다. 아래와 같은 규칙을 이용하여 begin에서 target으로 변환하는 가장 짧은 변환 과정을 찾으려고 합니다.

1. 한 번에 한 개의 알파벳만 바꿀 수 있습니다. 2. words에 있는 단어로만 변환할 수 있습니다.

예를 들어 begin이 "hit", target가 "cog", words가 ["hot","dot","dog","lot","log","cog"]라면 "hit" -> "hot" -> "dot" -> "dog" -> "cog"와 같이 4단계를 거쳐 변환할 수 있습니다.

두 개의 단어 begin, target과 단어의 집합 words가 매개변수로 주어질 때, 최소 몇 단계의 과정을 거쳐 begin을 target으로 변환할 수 있는지 return 하도록 solution 함수를 작성해주세요.

 

제한 사항

  • 각 단어는 알파벳 소문자로만 이루어져 있습니다.
  • 각 단어의 길이는 3 이상 10 이하이며 모든 단어의 길이는 같습니다.
  • words에는 3개 이상 50개 이하의 단어가 있으며 중복되는 단어는 없습니다.
  • begin과 target은 같지 않습니다.
  • 변환할 수 없는 경우에는 0를 return 합니다.

 

입출력 예

begin target words return
"hit" "cog" ["hot", "dot", "dog", "lot", "log", "cog"] 4
"hit" "cog" ["hot", "dot", "dog", "lot", "log"] 0

 

풀이과정

- 단어의 최대의 수가 50개밖에 안되기 때문에 조건에 일치하는 문자를 찾아 DFS 이용

- 조건 중 한 번에 한 개의 알파벳만 바꿀 수 있기 때문에 조건에 일치하는 Check메서드 생성

- DFS를 사용해 target단어가 같으면 answer값을 업데이트, 사용한 단어를 체크하기 위한 배열 visited배열과 cnt를 사용하여 DFS 재귀로 구현

 

통과한 코드

class Solution {
    static int answer;
    static boolean visited[];
    public int solution(String begin, String target, String[] words) {
        answer=51; // 단어 최대 값은 50
        visited=new boolean[words.length];
        dfs(begin, target, 0, words); 
        
        return answer == 51? 0 :answer; // answer가 51이면 tartget과 같은 단어가 없는 것으로 판단
    }
    public void dfs(String now, String target, int cnt, String words[]){
        if(now.equals(target)){ // target단어와 같은 경우
            answer=(answer>cnt)? cnt: answer;
            return;
        }
        for(int i=0; i<words.length; i++){ //현재 글자와 하나만 차이나고 탐색되지 않았다면 dfs수행
            if(!visited[i] && check(now,words[i])){
                visited[i]=true;
                dfs(words[i],target, cnt+1, words);
                visited[i]=false;
            }
        }
    }
    
    public boolean check(String now, String next){ // 현재 단어와 다음 단어가 바뀔 조건에 일치하는지 체크
        int cnt=0;
        for(int i=0; i<now.length(); i++){
            if(now.charAt(i)!=next.charAt(i)){
                cnt++;
            }
        }
        return cnt == 1? true:false;
    }
}