본문 바로가기
algorithm/DP

boj 11502

by iskull 2021. 2. 26.
728x90

c[n]은 n장을 구매하기 위한 최대 비용이다. 점화식은 c[n] = max(c[n], c[n-m] + pay[m]) (m <= n, n-m장에서 m장이 들어있는 상품을 쿠매했을 때의 비용)이다.

github.com/skullkim/algorithm/blob/master/boj/dp/11052_re.cpp

 

skullkim/algorithm

Contribute to skullkim/algorithm development by creating an account on GitHub.

github.com

 

'algorithm > DP' 카테고리의 다른 글

boj 14501  (0) 2021.02.25
boj 11727  (0) 2021.02.11
boj 11726  (0) 2021.02.11
boj 1463  (0) 2021.01.20