Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 레벨3
- BFS
- 모의SW역량테스트
- Set
- Sort
- find
- 코딩스킬
- 이런게4문제
- 백준
- 브루트포스
- C++
- 레벨2
- Map
- 문자열
- 완전탐색
- STL
- 코딩테스트
- 삼성SW테스트
- 프로그래머스
- 시뮬레이션
- 삼성
- priority_queue
- 2018
- substr
- swea
- KAKAO
- dp
- dfs
- 백트래킹
- 삼성SW역량테스트
Archives
- Today
- Total
-
[DP] 백준 1463번 - 1로 만들기 본문
https://www.acmicpc.net/problem/1463
백준 DP 연습 문제다.
DP는 크게 상향식, 하향식으로 나뉠 수 있는데, 이 문제는 상향식으로 풀었다.
즉, 초기값을 낮은곳에 잡고 이를 활용해 목적숫자로 커지며 답을 갱신하는 구조다.
작은 답이 큰 답의 도출에 이용되는 DP.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
#include <iostream>
#include <algorithm>
#define maxlen 1000000+1
#define INF 987654321
using namespace std;
int N;
int arr[maxlen];
int main(){
ios_base::sync_with_stdio(0);
cin.tie(0);
cin >> N;
for (int i = 0; i < maxlen; i++) arr[i] = INF;
arr[1] = 0;
for (int i = 1; i <= N; i++){
if (i == N){
cout << arr[N] << '\n';
break;
}
if (i + 1 < maxlen){
arr[i + 1] = min(arr[i] + 1, arr[i + 1]);
}
if (i * 2 < maxlen){
arr[i * 2] = min(arr[i] + 1, arr[i * 2]);
}
if (i * 3 < maxlen){
arr[i * 3] = min(arr[i] + 1, arr[i * 3]);
}
}
return 0;
}
http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4ftext-decoration:none">Colored by Color Scripter
|
http://colorscripter.com/info#e" target="_blank" style="text-decoration:none;color:white">cs |
'5. DP' 카테고리의 다른 글
[DP] 백준 4811번 - 알약 (0) | 2020.01.28 |
---|---|
[DP] 백준 5557번 - 1학년 (0) | 2020.01.27 |
[DP] 백준 2193번 - 이친수 (0) | 2020.01.08 |
[DP] 백준 9095번 - 1, 2, 3 더하기 (0) | 2020.01.08 |
[DP] 백준 1149번 - RGB 거리 (0) | 2020.01.08 |
Comments