프로그래머스 코딩테스트연습 BFS 단어변환
by 진혀크
문제
- 두 개의 단어 begin, target과 단어의 집합 words가 있습니다. 아래와 같은 규칙을 이용하여 begin에서 target으로 변환하는 가장 짧은 변환 과정을 찾으려고 합니다.
- 한 번에 한 개의 알파벳만 바꿀 수 있습니다.
- 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
hit, cog, [hot, dot, dog, lot, log, cog
hit, cog, [hot, dot, dog, lot, log]
return
4
0
접근
- 단어가 하나만 다를 때 변환할 수 있다는 점을 어떻게 확인할 것인가?
- 단계수를 어떻게 확인할 것인가?
내가 생각한 풀이
- 단어가 3~10자리 수이니 for문으로 직접 비교해도 시간이 충분하다.
- BFS를 실행할 때 단계 수를 함께 queue에 push 해버리면 된다.
코드
#include <string>
#include <vector>
#include <queue>
using namespace std;
int solution(string begin, string target, vector<string> words) {
int answer = 0, check[51] = {0, }, wordsize = begin.size(), wordlength = words.size();
for(int i = 0 ;i<words.size(); i++)
{
if(words[i] == target) answer = 1;
}
if(answer == 0) return 0;
//단어와 단계수를 함께 queue에 담는다.
queue<pair<string, int>> q;
q.push({begin, 0});
while(!q.empty())
{
int wordchecker[51] = {0, };
pair<string, int> temp = q.front();
q.pop();
//target에 도달하면 return시킨다.
if(temp.first == target){
return temp.second;
}
for(int i = 0 ;i<words.size(); i++)
{
int c[10] = {0, };
//단어를 비교하는 과정
for(int j = 0 ;j<temp.first.size(); j++)
{
if(temp.first[j] == words[i][j]) c[j] = 1;
}
int tempcheck = 0;
//비교 후 몇 개가 일치하는지 확인
for(int j = 0 ;j<temp.first.size(); j++)
{
if(c[j] == 1) tempcheck++;
}
//단어의 길이 - 1 만큼이 일치한다면 변환 가능하므로 queue에 push한다.
if(tempcheck == temp.first.size() - 1)
{
q.push({words[i], temp.second + 1});
}
}
}
return answer;
}
Subscribe via RSS