Algorithm/백준 알고리즘

백준_1463 1로 만들기(자바) / DP

미스터로즈 2021. 3. 23. 18:52

시간 & 메모리 제한

문제

입력 & 출력

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 부터 채워 가는 방식입니다.