250x250
Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 주엽역 생활맥주
- 막내의막무가내 프로그래밍
- 프로그래머스 알고리즘
- Fragment
- 막내의막무가내 알고리즘
- 안드로이드 Sunflower 스터디
- 막내의막무가내 안드로이드 에러 해결
- 막내의 막무가내
- 막내의막무가내 목표 및 회고
- 막내의막무가내 일상
- 안드로이드 sunflower
- 막내의막무가내 안드로이드
- 막내의막무가내 rxjava
- 막내의막무가내 플러터
- flutter network call
- 막내의막무가내 코틀린 안드로이드
- 막내의막무가내 코볼 COBOL
- 부스트코스
- 막내의 막무가내 알고리즘
- 막무가내
- 주택가 잠실새내
- 2022년 6월 일상
- 막내의막무가내 코틀린
- 막내의막무가내
- 막내의막무가내 SQL
- 안드로이드
- 막내의막무가내 플러터 flutter
- 부스트코스에이스
- 막내의막무가내 안드로이드 코틀린
- 프래그먼트
Archives
- Today
- Total
막내의 막무가내 프로그래밍 & 일상
[알고리즘] 프로그래머스 단어 변환 -dfs, bfs- 본문
728x90
https://programmers.co.kr/learn/courses/30/lessons/43163
프로그래머스 LEVEL3 단어 변환 문제를 풀어봤습니다.
bfs 를 사용해서 풀이했습니다.
한 단어는 한 글자만 변경이 가능한 경우 변경할 수 변환할 수 있습니다. (탐색 조건)
1. 큐에 시작 단어를 넣습니다.
2. 단어들을(words) 불러오고 이미 사용한 단어가 아닌 경우 현재 단어와 한글자씩 비교하고 변환이 가능한 경우 해당 글자를 큐에 추가하고 방문처리 해줍니다.(isConvert())
이때 몇번변환했는지 알 수 있게 Node 클래스의 cnt를 증가시켜 큐에 추가해줍니다.
[Java]
import java.util.Arrays;
import java.util.LinkedList;
import java.util.List;
import java.util.Queue;
class Solution {
// 현재단어에서 단어 변경 하나만 할 수 있는 경우만 변환 가능
public static boolean isConvert(String word, String convertWord) {
int count = 0;
for (int i = 0; i < word.length(); i++) {
if (word.charAt(i) != convertWord.charAt(i)) {
count++;
}
if (count > 1) {
return false;
}
}
return true;
}
public int solution(String begin, String target, String[] words) {
int answer = 0;
boolean[] isVisited = new boolean[words.length];
List<String> wordList = Arrays.asList(words);
if (!wordList.contains(target)) { // target 단어 안가지고 있는 경우
return 0;
}
//bfs
Queue<Word> queue = new LinkedList<>();
queue.offer(new Word(begin, 0));
while (!queue.isEmpty()) {
Word currentWord = queue.poll();
if (currentWord.word.equals(target)) {
answer = currentWord.cnt;
break;
}
for (int i = 0; i < words.length; i++) {
if (!isVisited[i] && isConvert(currentWord.word, words[i])) {
isVisited[i] = true;
queue.offer(new Word(words[i], currentWord.cnt + 1));
}
}
}
return answer;
}
static class Word {
String word; // 단어
int cnt; // 변경한 횟수
Word(String word, int cnt) {
this.word = word;
this.cnt = cnt;
}
}
}
[Kotlin]
import java.util.*
class Solution {
fun solution(begin: String, target: String, words: Array<String>): Int {
var answer = 0
val isVisited = BooleanArray(words.size)
val wordList = Arrays.asList(*words)
if (!wordList.contains(target)) { // target 단어 안가지고 있는 경우
return 0
}
val queue = LinkedList<Word>()
queue.offer(Word(begin, 0))
while (!queue.isEmpty()) {
with(queue.poll()) {
if (this.word == target) {
answer = this.cnt
return answer
}
for (i in words.indices) {
if (!isVisited[i] && isConvert(this.word, words[i])) {
isVisited[i] = true
queue.offer(Word(words[i], this.cnt + 1))
}
}
}
}
return answer
}
data class Word(var word: String, var cnt: Int)
companion object {
fun isConvert(word: String, convertWord: String): Boolean {
var count = 0
for (i in 0 until word.length) {
if (word[i] != convertWord[i]) {
count++
}
if (count > 1) {
return false
}
}
return true
}
}
}
감사합니다.!!
728x90
'알고리즘 > DFS, BFS, 시뮬, 백트래킹' 카테고리의 다른 글
[알고리즘] 백준 7569 토마토 2단계 -dfs, bfs- 자바 코틀린 (0) | 2020.09.18 |
---|---|
[알고리즘] 프로그래머스 여행경로 (java) -bfs, dfs- (0) | 2020.06.02 |
[알고리즘] 프로그래머스 네트워크 -dfs, bfs- (2) | 2020.05.30 |
[알고리즘] 프로그래머스 방문 길이 -Summer/Winter Coding(~2018)- (선을 방문하는 문제) (0) | 2020.05.18 |
[알고리즘] 프로그래머스 타겟 넘버 -깊이/너비 우선 탐색(DFS/BFS)- (0) | 2020.05.16 |
Comments