반응형
이전에 풀었던 1로 만들기 문제dp에 추가적으로 자취를 남길 변수를 사용합니다.
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class Main {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringBuilder sb = new StringBuilder();
int N = Integer.parseInt(br.readLine());
int[] D = new int[N+1];
int[] S = new int[N+1];
for (int i = 2; i <= N; i++) {
D[i] = D[i-1] + 1;
S[i] = i-1;
if (i % 2 == 0 && D[i] > D[i/2] + 1) {
D[i] = D[i/2] + 1;
S[i] = i/2;
}
if (i % 3 == 0 && D[i] > D[i/3] + 1) {
D[i] = D[i/3] + 1;
S[i] = i/3;
}
}
System.out.println(D[N]);
do {
sb.append(N + " ");
N = S[N];
} while (N != 0);
System.out.print(sb);
}
}
반응형
'Algorithm' 카테고리의 다른 글
백준 18870번 좌표 압축 [ Java ] (0) | 2021.04.30 |
---|---|
백준 11659번 구간 합 구하기 4 [ Java ] (0) | 2021.04.30 |
프로그래머스 코딩테스트 연습 Level4 - 우유와 요거트가 담긴 장바구니 [ Mysql ] (0) | 2021.04.23 |
프로그래머스 코딩테스트 연습 Level2 - 점프와 순간 이동 [ Java ] (0) | 2021.04.21 |
프로그래머스 코딩테스트 연습 Level2 - 영어 끝말잇기 [ Java ] (0) | 2021.04.21 |