276 Paint Fence
Last updated
Was this helpful?
Last updated
Was this helpful?
There is a fence with n posts, each post can be painted with one of the k colors.
You have to paint all the posts such that no more than two adjacent fence posts have the same color.
Return the total number of ways you can paint the fence.
Note: n and k are non-negative integers.
(1) DP
DP: 时间复杂度O(n), 空间复杂度O(n)