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
- 레벨2
- 모의SW역량테스트
- BFS
- Set
- swea
- 코딩테스트
- Map
- 브루트포스
- 문자열
- 2018
- find
- 이런게4문제
- 레벨3
- 코딩스킬
- 삼성SW역량테스트
- 삼성
- Sort
- 프로그래머스
- 시뮬레이션
- dp
- substr
- C++
- 백트래킹
- 백준
- priority_queue
- dfs
- KAKAO
- STL
- 완전탐색
- 삼성SW테스트
Archives
- Today
- Total
-
[DP] BOJ 11057번 - 오르막 수 본문
https://www.acmicpc.net/problem/11057
DP 연습문제다.
DP[자리수][끝수]라고 정했을 때
맨 윗줄 DP[1][0] ~ DP[1][9]는 모두 1로 선언해준다.
그 다음, DP[N][K] = DP[N-1][0] + DP[N-1][1] + ... + DP[N-1][K]와 같이 점화식을 구성해주면 된다.
아래는 소스코드.
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
34
35
36
37
|
#include <stdio.h>
#pragma warning(disable:4996)
#define div 10007
int main(){
long long DP[1001][10];
for (int r = 0; r <= 1000; r++){
for (int c = 0; c <= 9; c++){
DP[r][c] = 0;
}
}
for (int c = 0; c < 10; c++) DP[1][c] = 1;
for (int r = 1; r <= 1000; r++) DP[r][0] = 1;
int n;
scanf("%d", &n);
if (n == 1){
printf("10\n");
return 0;
}
for (int r = 2; r <= 1000; r++){
for (int c = 1; c <= 9; c++){
for (int b_c = 0; b_c <= c; b_c++){
DP[r][c] += DP[r - 1][b_c];
}
DP[r][c] %= div;
}
if (r == n){
long long ret = 0;
for (int c = 0; c <= 9; c++) {
ret += DP[r][c]; // 모두 더한다음에 모듈러해준다.
}
printf("%lld\n", ret%div);
break;
}
}
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] 백준 2011번 - 암호코드 (0) | 2020.01.29 |
---|---|
[DP] BOJ - 10844번 (쉬운계단수) (0) | 2020.01.29 |
[DP] 백준 4811번 - 알약 (0) | 2020.01.28 |
[DP] 백준 5557번 - 1학년 (0) | 2020.01.27 |
[DP] 백준 2193번 - 이친수 (0) | 2020.01.08 |
Comments