[백준]11057 오르막수
Contents
https://www.acmicpc.net/problem/11057
풀이:
- a[i][t] 는 길이가 i인 수에서 1의 자리가 t인 수의 오르막 수의 개수
- a[i][t] += max(a[i - 1][t], a[i][t - 1]);
코드:
|
|
https://www.acmicpc.net/problem/11057
|
|