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
- 재귀함수
- Java
- Interface
- java 내부 클래스
- 후위표기
- 자바스크립트 이벤트중지
- 재귀
- 상속
- 알고리즘
- char to str
- 자바입출력
- 알고리즘 그래프
- str to char array
- 순열코드
- inner class
- 서로소
- parseInt()
- jquery 필터선택자
- 순열 재귀
- 자바 재귀 조합
- jquery dom 계층 선택자
- 자바스크립트 이벤트처리
- 자바
- jquery 이벤트 처리
- 조합 재귀
- 자바 순열 코드
- 자바 조합 재귀
- java lambda
- jquery 속성선택자
- java Collections.sort()
Archives
- Today
- Total
유블로그
[프로그래머스] 단어변환 본문
프로그래머스 level3 단어변환
소요시간 : 16분
dfs 로 풀었다.
begin 에서 1글자만 다른 단어를 words 배열에서 찾아서 dfs 를 시작한다.
cnt 변수를 들고다니면서 dfs를 들어갈 때마다 단어변환횟수 +1 한다.
begin 이 target 과 같은 순간 종료되고 매번 cnt 가 더 작은 값으로 MIN이 업데이트 된다.
class Solution {
boolean[] selected;
int N;
public int solution(String begin, String target, String[] words) {
N = words.length;
selected = new boolean[N];
for (int i = 0; i < N; i++) {
if(isDiffOne(begin, words[i])) {
selected[i] = true;
dfs(1, words[i], target, words);
selected[i] = false;
}
}
if(MIN == Integer.MAX_VALUE) return 0;
return MIN;
}
int MIN = Integer.MAX_VALUE;
public void dfs(int cnt, String begin, String target, String[] words) {
if(begin.equals(target)) {
if(MIN > cnt) MIN = cnt;
return;
}
for (int i = 0; i < N; i++) {
if(selected[i]) continue;
if(isDiffOne(begin, words[i])) {
selected[i] = true;
dfs(cnt+1, words[i], target, words);
selected[i] = false;
}
}
}
public boolean isDiffOne(String a, String b) {
int cnt = 0;
for (int i = 0; i < a.length(); i++) {
if(a.charAt(i) != b.charAt(i)) cnt++;
if(cnt > 1) return false;
}
return true;
}
}
'알고리즘' 카테고리의 다른 글
[프로그래머스] 등굣길 (0) | 2021.01.07 |
---|---|
[프로그래머스] 정수 삼각형 (0) | 2021.01.06 |
[프로그래머스] 소수찾기 (0) | 2021.01.04 |
[프로그래머스] 모의고사 (0) | 2021.01.03 |
[프로그래머스] 이중우선순위큐 (0) | 2021.01.03 |