시간 & 메모리 제한
문제
입력 & 출력
package com.Back;
import java.io.BufferedReader;
import java.io.InputStreamReader;
//DP를 이용한 풀이
public class Back_1463 {
public static void main(String[] args) throws Exception {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int num = Integer.parseInt(br.readLine());
int [] D = new int[num+1];
D[0] = 0;
D[1] = 0;
for(int i = 2; i <= num;i++) {
D[i] = D[i-1]+1;
if(i%2 == 0 && D[i] > D[i / 2] + 1) {
D[i] = D[i/2]+1;
}
if(i%3 == 0 && D[i] > D[i / 3] + 1) {
D[i] = D[i/3]+1;
}
}
System.out.println(D[num]);
}
}
DP를 이용해서 문제를 풀었습니다. Bottom 부터 채워 가는 방식입니다.
'Algorithm > 백준 알고리즘' 카테고리의 다른 글
백준_11726 2xn타일링(자바) / DP (0) | 2021.03.24 |
---|---|
백준_1149 RGB 거리 (자바) / DP (0) | 2021.03.24 |
백준_1012 유기농 배추(JAVA) / DFS & BFS (0) | 2021.03.23 |
백준_1753 최단경로(자바) / 다익스트라(dijkstra) (0) | 2021.03.22 |
백준_2667 단지 번호 붙이기(JAVA) / BFS & DFS (0) | 2021.03.22 |