国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁(yè) > 學(xué)院 > 開發(fā)設(shè)計(jì) > 正文

(給樹染色)CodeForces - 711C Coloring Trees

2019-11-08 02:51:58
字體:
來(lái)源:轉(zhuǎn)載
供稿:網(wǎng)友

PRoblem 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, 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. 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 j. pi,?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.

Example 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.

思路: m,n,k都很小,且問(wèn)結(jié)果不問(wèn)過(guò)程,可以嘗試動(dòng)態(tài)規(guī)劃 dp[i][j][k]表示將第i棵樹為j顏色而美麗度為k時(shí)油漆的最小消耗。

AC代碼:

#include <iostream>#include <cstdio> #include <cstring> #include <cstdlib>#include <cmath>#include <algorithm> using namespace std; long long tree[105], cost[105][105], dp[105][105][105]; int main() { long long n, m, k0; cin >> n >> m >> k0; for(int i = 1; i <= n; i++){ cin >> tree[i]; } for(int i = 1; i <= n; i++){ for(int j = 1; j <= m; j++){ cin >> cost[i][j]; } } for(int i = 0; i <= n + 1; i++){ for(int j = 0; j <= m + 1; j++){ for(int k = 0; k <= k0 + 1; k++){ dp[i][j][k] = 9e18; } } } int i, j, k, y; for(i = 1; i <= n; i++){ for(k = 1; k <= k0; k++){ if(k > i) break; if(tree[i] != 0){ if(i == 1){ dp[1][tree[i]][1] = 0; continue; } dp[i][tree[i]][k] = dp[i-1][tree[i]][k]; for(j = 1; j <= m; j++){ if(tree[i] == j) continue; else dp[i][tree[i]][k] = min(dp[i][tree[i]][k], dp[i - 1][j][k - 1]); } } else{ if(i == 1){ for(j = 1; j <= m; j++){ dp[i][j][1] = cost[1][j]; } continue; } for(j = 1; j <= m; j++){ dp[i][j][k] = dp[i - 1][j][k] + cost[i][j]; for(y = 1; y <= m; y++){ if(j == y) continue; else dp[i][j][k] = min(dp[i][j][k], dp[i - 1][y][k - 1] + cost[i][j]); } } } } } long long ans = 9e18; for(j = 1; j <= m; j++){ ans = min(ans, dp[n][j][k0]); } if(ans == 9e18) printf("-1/n"); else printf("%lld/n", ans); return 0; }

也可以單獨(dú)存兩個(gè)二維數(shù)組:a[j][k] = dp[i][j][k],b[j][k] = dp[i+1][j][k],然后a數(shù)組和b數(shù)組交換記錄


發(fā)表評(píng)論 共有條評(píng)論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 堆龙德庆县| 阳谷县| 水富县| 锦屏县| 安达市| 西藏| 阿巴嘎旗| 繁峙县| 定兴县| 米泉市| 栾川县| 安仁县| 寿宁县| 财经| 孝昌县| 资阳市| 麟游县| 黔江区| 云林县| 沙坪坝区| 海盐县| 溧阳市| 白朗县| 北海市| 淅川县| 大港区| 泰宁县| 通渭县| 大丰市| 广丰县| 泸西县| 天津市| 天镇县| 都安| 河间市| 通江县| 岳普湖县| 中牟县| 武川县| 土默特右旗| 尉氏县|