https://school.programmers.co.kr/learn/courses/30/lessons/12946
프로그래머스
SW개발자를 위한 평가, 교육, 채용까지 Total Solution을 제공하는 개발자 성장을 위한 베이스캠프
programmers.co.kr
접근 방법
- 재귀 알고리즘의 스테디 셀러 문제이며, 구현 과정은 다음과 같이 일반화를 통해 풀 수 있다.
- n-1개의 원판을 1번 기둥 -> 2번 기둥으로 옮긴다
- 1개 (가장 큰) 원판을 1번 기둥 -> 3번 기둥으로 옮긴다.
- n-1개의 원판을 2번 기둥 -> 3번 기둥으로 옮긴다
코드
class Solution {
int[][] ans;
int idx = 0;
public int[][] solution(int n) {
ans = new int[(int) Math.pow(2,n)-1][2];
hanoi(n,1,3);
return ans;
}
void hanoi(int n, int from, int to){
if(n == 1){
ans[idx][0] = from;
ans[idx++][1] = to;
return;
}
int o = 6-from-to;
hanoi(n-1, from, o);
hanoi(1, from, to);
hanoi(n-1, o, to);
}
}
'Algorithm' 카테고리의 다른 글
[프로그래머스] LV 3 부대복귀 (0) | 2024.11.18 |
---|---|
[프로그래머스] LV 3 가장 긴 팰린드롬 (0) | 2024.11.17 |
[프로그래머스] LV 3 정수 삼각형 (0) | 2024.11.11 |
[프로그래머스]LV 3 연속 펄스 부분 수열의 합 (0) | 2024.11.10 |
[프로그래머스] LV 2 124나라의 숫자 (0) | 2024.11.09 |