【Codeforces 711C】Coloring Trees
【链接】 我是链接,点我呀:)
【题意】
连续相同的数字分为一段
你可以改变其中0为1~m中的某个数字(改变成不同数字需要不同花费)
问你最后如果要求分成恰好k段的话,最少需要多少花费
【题解】
dp[i][j][k]前i棵树,分成j段,第j段最后一棵树颜色为m的最小花费
很好转移了,分情况就好
【代码】
import java.io.*;
import java.util.*;
public class Main {
static InputReader in;
static PrintWriter out;
public static void main(String[] args) throws IOException{
//InputStream ins = new FileInputStream("E:\\rush.txt");
InputStream ins = System.in;
in = new InputReader(ins);
out = new PrintWriter(System.out);
//code start from here
new Task().solve(in, out);
out.close();
}
static int N = 100;
static class Task{
int n,m,k;
long dp[][][] = new long[N+10][N+10][N+10];
int p[][] = new int[N+10][N+10];
int c[] = new int[N+10];
//dp[i][j][k]前i棵树,分成j段,第j段最后一棵树颜色为m的最小花费
public void solve(InputReader in,PrintWriter out) {
n = in.nextInt(); m = in.nextInt();k = in.nextInt();
for (int i = 1;i <= n;i++) c[i] = in.nextInt();
for (int i = 1;i <= n;i++)
for (int j = 1;j <= m;j++)
p[i][j] = in.nextInt();
for (int i = 0;i <=N;i++)
for (int j = 0;j <= N;j++)
for(int k = 0;k <=N;k++)
dp[i][j][k] = -1;
if (c[1]==0) {
for (int j = 1;j <= m;j++) {
dp[1][1][j] = p[1][j];
}
}else {
dp[1][1][c[1]] = 0;
}
for (int i = 1;i < n;i++)
for (int j = 1;j <= k;j++)
for (int l = 1;l <= m;l++) {
if (dp[i][j][l]!=-1) {
if(c[i+1]==0) {
for (int l2=1;l2<=m;l2++) {
long temp = dp[i][j][l] + p[i+1][l2];
if (l2==l){
if (dp[i+1][j][l2]==-1) {
dp[i+1][j][l2] = temp;
}else {
dp[i+1][j][l2] = Math.min(dp[i+1][j][l2],temp);
}
}else {
if (dp[i+1][j+1][l2]==-1) {
dp[i+1][j+1][l2] = temp;
}else {
dp[i+1][j+1][l2] = Math.min(dp[i+1][j+1][l2], temp);
}
}
}
}else {
//c[i+1]=x
if (c[i+1]==l) {
if (dp[i+1][j][l]==-1) {
dp[i+1][j][l] = dp[i][j][l];
}else {
dp[i+1][j][l] = Math.min(dp[i+1][j][l], dp[i][j][l]);
}
}else {
if (dp[i+1][j+1][c[i+1]]==-1) {
dp[i+1][j+1][c[i+1]] = dp[i][j][l];
}else {
dp[i+1][j+1][c[i+1]] = Math.min(dp[i+1][j+1][c[i+1]], dp[i][j][l]);
}
}
}
}
}
//dp[n][k][1~m]
long ma = -1;
for (int i = 1;i <= m;i++)
if (dp[n][k][i]!=-1) {
if (ma==-1)
ma = dp[n][k][i];
else
ma = Math.min(ma, dp[n][k][i]);
}
out.println(ma);
}
}
static class InputReader{
public BufferedReader br;
public StringTokenizer tokenizer;
public InputReader(InputStream ins) {
br = new BufferedReader(new InputStreamReader(ins));
tokenizer = null;
}
public String next(){
while (tokenizer==null || !tokenizer.hasMoreTokens()) {
try {
tokenizer = new StringTokenizer(br.readLine());
}catch(IOException e) {
throw new RuntimeException(e);
}
}
return tokenizer.nextToken();
}
public int nextInt() {
return Integer.parseInt(next());
}
}
}
【Codeforces 711C】Coloring Trees的更多相关文章
- codeforces 711C C. Coloring Trees(dp)
题目链接: C. Coloring Trees time limit per test 2 seconds memory limit per test 256 megabytes input stan ...
- 【codeforces 415D】Mashmokh and ACM(普通dp)
[codeforces 415D]Mashmokh and ACM 题意:美丽数列定义:对于数列中的每一个i都满足:arr[i+1]%arr[i]==0 输入n,k(1<=n,k<=200 ...
- 【42.07%】【codeforces 558A】Lala Land and Apple Trees
time limit per test1 second memory limit per test256 megabytes inputstandard input outputstandard ou ...
- 【27.91%】【codeforces 734E】Anton and Tree
time limit per test3 seconds memory limit per test256 megabytes inputstandard input outputstandard o ...
- 【codeforces 755C】PolandBall and Forest
time limit per test1 second memory limit per test256 megabytes inputstandard input outputstandard ou ...
- 【codeforces 750F】New Year and Finding Roots
time limit per test2 seconds memory limit per test256 megabytes inputstandard input outputstandard o ...
- 【22.73%】【codeforces 606D】Lazy Student
time limit per test2 seconds memory limit per test256 megabytes inputstandard input outputstandard o ...
- 【codeforces 707E】Garlands
[题目链接]:http://codeforces.com/contest/707/problem/E [题意] 给你一个n*m的方阵; 里面有k个联通块; 这k个联通块,每个连通块里面都是灯; 给你q ...
- 【codeforces 707C】Pythagorean Triples
[题目链接]:http://codeforces.com/contest/707/problem/C [题意] 给你一个数字n; 问你这个数字是不是某个三角形的一条边; 如果是让你输出另外两条边的大小 ...
随机推荐
- Tomcat根目录下work文件夹的作用(转载)
用 tomcat作web服务器的时候,部署的程序在webApps下,这些程序都是编译后的程序.tomcat有一个work目录,里面存放了页面的缓存, 访问的jsp都会编译,编译后的文件都会存储在wor ...
- 【转载】Java - Wait & Notify
[本文转自]http://www.cnblogs.com/dolphin0520/p/3920385.html 这三个方法的文字描述可以知道以下几点信息: 1)wait().notify()和noti ...
- 【WIP】数据结构与算法入门
创建: 2017/12/25
- (数论)51NOD 1136 欧拉函数
对正整数n,欧拉函数是少于或等于n的数中与n互质的数的数目.此函数以其首名研究者欧拉命名,它又称为Euler's totient function.φ函数.欧拉商数等.例如:φ(8) = 4(Phi( ...
- 【杂文】5亿大质数表(5e8)
[杂文]\(5\) 亿大质数表(\(5e8\)) 在写哈希,刷数论题时曾一度想要查质数,\(F**k\) 百度文库数据又少,翻页蛋疼,还不给复制,真的是服了. 于是在我闲的蛋疼的时候就搞了个质数表出来 ...
- 【洛谷4721】【模板】分治FFT(CDQ分治_NTT)
题目: 洛谷 4721 分析: 我觉得这个 "分治 FFT " 不能算一种特殊的 FFT ,只是 CDQ 分治里套了个用 FFT (或 NTT)计算的过程,二者是并列关系而不是偏正 ...
- 用SpringMVC实现的上传下载
1.导入相关jar包 commons-fileupload.jar commons-io.jar 2.配置web.xml文件 <?xml version="1.0" enco ...
- 获取Sprite上某一个点的透明度
转载[ http://www.cnblogs.com/Androider123/p/3795050.html] 本篇文章主要讲一下怎么做一个不规则的按钮,比如如下图的八卦,点击绿色和点击红色部分,需要 ...
- Code Kata:大整数四则运算—乘法 javascript实现
上周练习了加减法,今天练习大整数的乘法运算. 采取的方式同样为竖式计算,每一位相乘后相加. 乘法函数: 异符号相乘时结果为负数,0乘任何数都为0 需要调用加法函数 因为输入输出的为字符串,需要去除字符 ...
- 带有空格或tab的字符串的判断
class test { public static void main(String[] args) { String a = " "; //带有空格的字符串 if ( a.is ...