2579 계단 오르기
Contents
+++ author = “jyukki” categories = [“백준”] tags = [“algorithm”, “C++”, “DP”] date = “2017-11-29” description = “algorithm” featured = "" featuredalt = "" featuredpath = “date” linktitle = "" title = “[백준]2579 계단 오르기”
+++
https://www.acmicpc.net/problem/2579
풀이:
- b[i][0] 은 i번째를 골랐을 때, i-1번째를 안고른 경우의 수
- b[i][1] 은 i번째를 골랐을 때, i-1번째를 고른 경우의 수
코드:
|
|