삐까냥의 파도타기
Q1463. 1로 만들기 본문
import java.io.BufferedReader; import java.io.InputStreamReader; import java.util.StringTokenizer; public class Q1463 { static int[] array; public static void main(String[] args) throws Exception { // TODO Auto-generated method stub BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st = new StringTokenizer(br.readLine());
int value = Integer.valueOf(st.nextToken()); array = new int[value+1]; array[1] = 0; for (int i = 1; i < value; i++) { int nextArray = i+1; if (nextArray <= value) { setValue(nextArray, i); }
nextArray = i*2; if (nextArray <= value) { setValue(nextArray, i);
nextArray = i*3; if (nextArray <= value) { setValue(nextArray, i); } } } System.out.println(array[value]); }
public static void setValue(int nextArray, int i) { int tempValue = array[i]+1; if (array[nextArray] == 0 || (array[nextArray] > tempValue)) { array[nextArray] = tempValue; } } }
|
'코딩 > 백준 알고리즘' 카테고리의 다른 글
Q2579. 계단오르기 (0) | 2019.02.09 |
---|---|
Q9095. 1, 2, 3 더하기 (0) | 2019.02.09 |
2638번) 치즈 (0) | 2018.04.11 |
1600번) 말이 되고픈 원숭이 (0) | 2018.04.11 |
1939번) 통나무 옮기기 (0) | 2018.04.10 |