codeforces round 369div2 C Coloring Trees

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.

这是一道三维DP题

题目的大意是给定n棵树,有些树有颜色,有些没有,要求给那些没有颜色的树上色,这个人只认识m种颜色,每种颜色有花费

上完色后要看看每棵树的颜色的种类,连续的种类为一个beauty,要你在上完色的时候构成k个beauty并且花费最少。

构建dp[i][j][k]为第i棵树j个beauty选第k个颜色时的花费。

然后暴力dp,时间复杂度是O(n*k*m^2)

其次inf要写的很大,不然就达不到数据。

参考高手的做法这边inf给2000000000000000ll

代码如下:

#include

#include

#include

#include

using namespace std;

#define N 110

long long int dp[N][N][N],a[N],b[N][N];

#define inf 2000000000000000ll

int main(){

int k,i,j,n,m,p,x,q;

cin>>n>>m>>k;

for(i=1;i<=n;i++) cin>>a[i];

for(i=1;i<=n;i++)

for(j=1;j<=m;j++)

cin>>b[i][j];

for(i=0;i<=100;i++) for(j=0;j<=100;j++) for(p=0;p<=100;p++) dp[i][j][p]=inf;

dp[0][1][0]=0;

for(i=0;i<n;i++)

for(j=1;j<=k;j++)

for(p=0;p<=m;p++){

if(dp[i][j][p]==inf) continue;

if(a[i+1]!=0){

if(p==0||a[i+1]==p) dp[i+1][j][a[i+1]]=min(dp[i+1][j][a[i+1]],dp[i][j][p]);

if(p!=0&&a[i+1]!=p) dp[i+1][j+1][a[i+1]]=min(dp[i+1][j+1][a[i+1]],dp[i][j][p]);

}

else if(a[i+1]==0){

for(q=1;q<=m;q++)

if(q!=p){

if(p!=0) dp[i+1][j+1][q]=min(dp[i+1][j+1][q],dp[i][j][p]+b[i+1][q]);

if(p==0) dp[i+1][j][q]=min(dp[i+1][j][q],dp[i][j][p]+b[i+1][q]);

}

if(p!=0) dp[i+1][j][p]=min(dp[i+1][j][p],dp[i][j][p]+b[i+1][p]);

}

}

long long int res=inf;

最后

自我介绍一下,小编13年上海交大毕业,曾经在小公司待过,也去过华为、OPPO等大厂,18年进入阿里一直到现在。

深知大多数初中级Android工程师,想要提升技能,往往是自己摸索成长,自己不成体系的自学效果低效漫长且无助

因此我收集整理了一份《2024年Android移动开发全套学习资料》,初衷也很简单,就是希望能够帮助到想自学提升又不知道该从何学起的朋友,同时减轻大家的负担。

既有适合小白学习的零基础资料,也有适合3年以上经验的小伙伴深入学习提升的进阶课程,基本涵盖了95%以上Android开发知识点!不论你是刚入门Android开发的新手,还是希望在技术上不断提升的资深开发者,这些资料都将为你打开新的学习之门

如果你觉得这些内容对你有帮助,需要这份全套学习资料的朋友可以戳我获取!!

由于文件比较大,这里只是将部分目录截图出来,每个节点里面都包含大厂面经、学习笔记、源码讲义、实战项目、讲解视频,并且会持续更新!
习提升的进阶课程,基本涵盖了95%以上Android开发知识点!不论你是刚入门Android开发的新手,还是希望在技术上不断提升的资深开发者,这些资料都将为你打开新的学习之门**

如果你觉得这些内容对你有帮助,需要这份全套学习资料的朋友可以戳我获取!!

由于文件比较大,这里只是将部分目录截图出来,每个节点里面都包含大厂面经、学习笔记、源码讲义、实战项目、讲解视频,并且会持续更新!

  • 9
    点赞
  • 17
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值