n trees grow. They decided to be naughty and color the trees in the park. The trees are numbered with integers from 1 to n
i has color ci. ZS the Coder and Chris the Baboon recognizes only m different colors, so 0 ≤ ci ≤ m, where ci means that tree i is uncolored.
ci. They can color each of them them in any of the m colors from 1 to m. Coloring the i-th tree with color j requires exactly pi, j
beauty of a coloring of the trees as the minimum number of contiguous groups (each group contains some subsegment of trees) you can split all the n trees into so that each group contains trees of the same color. For example, if the colors of the trees from left to right are 2, 1, 1, 1, 3, 2, 2, 3, 1, 3, the beauty of the coloring is 7, since we can partition the trees into 7 contiguous groups of the same color : {2}, {1, 1, 1}, {3}, {2, 2}, {3}, {1}, {3}.
exactly k. They need your help to determine the minimum amount of paint (in litres) needed to finish the job.
Please note that the friends can't color the trees that are already colored.
Input
n, m and k (1 ≤ k ≤ n ≤ 100, 1 ≤ m ≤ 100) — the number of trees, number of colors and beauty of the resulting coloring respectively.
n integers c1, c2, ..., cn (0 ≤ ci ≤ m), the initial colors of the trees. ci equals to 0 if the tree number i is uncolored, otherwise the i-th tree has color ci.
n lines follow. Each of them contains m integers. The j-th number on the i-th of them line denotes pi, j (1 ≤ pi, j ≤ 109) — the amount of litres the friends need to color i-th tree with color j. pi, j's are specified even for the initially colored trees, but such trees still can't be colored.
Output
k, print - 1.
Examples
input
3 2 2 0 0 0 1 2 3 4 5 6
output
10
input
3 2 2 2 1 2 1 3 2 4 3 5
output
-1
input
3 2 2 2 0 0 1 3 2 4 3 5
output
5
input
3 2 3 2 1 2 1 3 2 4 3 5
output
0
Note
2, 1, 1 minimizes the amount of paint used, which equals to 2 + 3 + 5 = 10. Note that 1, 1, 1 would not be valid because the beauty of such coloring equals to 1 ({1, 1, 1}
3, so there is no valid coloring, and the answer is - 1.
k, so no paint is used and the answer is 0.
这是一道三维DP题
题目的大意是给定n棵树,有些树有颜色,有些没有,要求给那些没有颜色的树上色,这个人只认识m种颜色,每种颜色有花费
上完色后要看看每棵树的颜色的种类,连续的种类为一个beauty,要你在上完色的时候构成k个beauty并且花费最少。
构建dp[i][j][k]为第i棵树j个beauty选第k个颜色时的花费。
然后暴力dp,时间复杂度是O(n*k*m^2)
其次inf要写的很大,不然就达不到数据。
参考高手的做法这边inf给2000000000000000ll
代码如下: