11048 이동하기
Contents
+++ author = “jyukki” categories = [“백준”] tags = [“algorithm”, “C++”, “DP”] date = “2017-11-30” description = “algorithm” featured = "" featuredalt = "" featuredpath = “date” linktitle = "" title = “[백준]11048 이동하기”
+++
https://www.acmicpc.net/problem/11048
풀이:
- a[i][t] 는 i행 t열로 갈 때 사탕의 최대 갯수
- a[i][t] 는 위에서 올때와 왼쪽에서 올때 중 최대값으로 구할 수 있다.
- a[i][t] += max(a[i - 1][t], a[i][t - 1]);
코드:
|
|