博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
codeforces 369 div2 C dp
阅读量:6714 次
发布时间:2019-06-25

本文共 5615 字,大约阅读时间需要 18 分钟。

http://codeforces.com/contest/711

 

C. Coloring Trees
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

ZS the Coder and Chris the Baboon has arrived at Udayland! They walked in the park where 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 from left to right.

Initially, tree i has color ci. ZS the Coder and Chris the Baboon recognizes only m different colors, so 0 ≤ ci ≤ m, where ci = 0 means that tree i is uncolored.

ZS the Coder and Chris the Baboon decides to color only the uncolored trees, i.e. the trees with ci = 0. 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 litres of paint.

The two friends define the 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}.

ZS the Coder and Chris the Baboon wants to color all uncolored trees so that the beauty of the coloring is 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

The first line contains three integers, nm and k (1 ≤ k ≤ n ≤ 1001 ≤ m ≤ 100) — the number of trees, number of colors and beauty of the resulting coloring respectively.

The second line contains 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.

Then 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 jpi, j's are specified even for the initially colored trees, but such trees still can't be colored.

Output

Print a single integer, the minimum amount of paint needed to color the trees. If there are no valid tree colorings of beauty 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

In the first sample case, coloring the trees with colors 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} is a way to group the trees into a single group of the same color).

In the second sample case, all the trees are colored, but the beauty of the coloring is 3, so there is no valid coloring, and the answer is - 1.

In the last sample case, all the trees are colored and the beauty of the coloring matches k, so no paint is used and the answer is 0.

 

题目大意:给你一个串,串上的每个点都有颜色(颜色为0~m),0表示无色。目前,我们要给无色的点涂色,给第i个串图上第j中颜色需要花费P[i][j]升油料。我们定义串的colorful为颜色不连续的点的个数。现在,我们要求串的colorful为k,问所需要的最小的颜料花费是多少?

思路:定义dp[i][j][k]表示第i棵点涂上第j种颜色在目前colorful在k的条件下的最小使用量

//看看会不会爆int! 或者绝对值问题。#include 
using namespace std;#define LL long long#define pb push_back#define mk make_pair#define fi first#define se second#define all(a) a.begin(), a.end()const int maxn = 100 + 5;const LL inf = 1e18;LL p[maxn][maxn], dp[maxn][maxn][maxn];int n, m, ty;int c[maxn];int main(){ cin >> n >> m >> ty; for (int i = 1; i <= n; i++) scanf("%d", c + i); for (int i = 1; i <= n; i++){ for (int j = 1; j <= m; j++){ scanf("%I64d", &p[i][j]); } } for (int i = 1; i <= n; i++){ for (int j = 1; j <= m; j++){ for (int k = 1; k <= n; k++){ dp[i][j][k] = inf; } } } for (int i = 1; i <= n; i++){ if (c[i] != 0){ for (int j = 1; j <= m; j++){
//前一个的color for (int k = 1; k <= i; k++){ if (k == 1){ dp[i][c[i]][k] = min(dp[i][c[i]][k], dp[i - 1][c[i]][k]); } else { if (c[i] == j) dp[i][c[i]][k] = min(dp[i - 1][j][k], dp[i][c[i]][k]); else dp[i][c[i]][k] = min(dp[i - 1][j][k - 1], dp[i][c[i]][k]); } //printf("%d%c", dp[i]) } } } else { for (int j = 1; j <= m; j++){
//目前的color for (int k = 1; k <= i; k++){ if (k == 1){
//至少有一种颜色 dp[i][j][k] = min(dp[i][j][k], dp[i - 1][j][k] + p[i][j]); } else { dp[i][j][k] = min(dp[i - 1][j][k] + p[i][j], dp[i][j][k]);//加入颜色相等 LL minval = inf; for (int c = 1; c <= m; c++){ if (c == j) continue; minval = min(minval, dp[i - 1][c][k - 1] + p[i][j]); } dp[i][j][k] = min(dp[i][j][k], minval); } } } } } LL ans = inf; for (int i = 1; i <= m; i++){ ans = min(ans, dp[n][i][ty]); } if (ans == inf) ans = -1; printf("%I64d\n", ans); return 0;}
View Code

 

转载于:https://www.cnblogs.com/heimao5027/p/5820770.html

你可能感兴趣的文章
我的友情链接
查看>>
log4j配置
查看>>
去掉Intel集成显卡的桌面右键菜单
查看>>
我的友情链接
查看>>
MediaPlayer播放网络视频
查看>>
面试的时候你感觉受到尊重了吗?
查看>>
LNMP - nginx用户认证
查看>>
redis主从配置
查看>>
JSP操作MySQL数据库实例讲解
查看>>
JVM结构、GC工作机制详解
查看>>
SQLSERVER2005发送邮件
查看>>
Install ESXi 5.1 using USB Flash Drive
查看>>
windows server 2012R2 双网卡绑定
查看>>
【二】进一步了解D语言之学前必备
查看>>
2019福建省队集训day1T2原样输出(copy)
查看>>
将普通sql查询的将结果集转换指定的对象,然后对象存在list中并返回
查看>>
cron任务计划
查看>>
LNMP源码编译安装
查看>>
软考网工难点分析之四 冲突槽时间与最小帧长
查看>>
nginx+keepalive实现高可用负载均衡
查看>>