드디어 실버리그로 올라와서 자료구조를 같이 공부하면서 백준 문제를 풀기로 했다!
실제 움직이는 원리를 보면 다음과 같다.
참고
관련 백준 문제
import java.io.*;
public class Main {
static BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(System.out));
public static double hanoiMove(int n){
return Math.pow(2,n)-1;
}
public static void hanoi(int n, int start, int mid, int to) throws IOException{
if(n == 1){
bw.write(start + " " + to + "\n");
return; //옮길 원반이 하나
}
hanoi(n-1, start,to,mid);
bw.write(start + " " + to + "\n");
hanoi(n-1, mid,start,to);
}
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int n = Integer.parseInt(br.readLine());
int ans = (int) hanoiMove(n);
bw.write(ans + "\n");
hanoi(n, 1, 2, 3); //start, to, mid 번호
bw.flush();
bw.close();
br.close();
}
}
❌주의!
BufferedWriter의 flush를 사용해 한 번에 버퍼를 비워주는 방식으로 출력해야 시간초과가 안 생긴다. 해보니 print의 경우 StringBuilder를 사용하지 않으면 시간초과가 나더라