9465 스티커
Contents
+++ author = “jyukki” categories = [“백준”] tags = [“algorithm”, “C++”, “DP”] date = “2017-11-30” description = “algorithm” featured = "" featuredalt = "" featuredpath = “date” linktitle = "" title = “[백준]9465 스티커”
+++
https://www.acmicpc.net/problem/9465
풀이:
- a[i][t] 는 i행 t열의 스티커를 골랐을 때 최대 점수
- a[t][i] += max(a[(t + 1) % 2][i - 2], a[(t + 1) % 2][i - 1])
코드:
|
|