首页
学习
活动
专区
圈层
工具
发布
首页
学习
活动
专区
圈层
工具
MCP广场
社区首页 >专栏 >【LightOJ】1047 - Neighbor House(dp)

【LightOJ】1047 - Neighbor House(dp)

作者头像
FishWang
发布2025-08-27 11:43:57
发布2025-08-27 11:43:57
10000
代码可运行
举报
运行总次数:0
代码可运行

点击打开题目

1047 - Neighbor House

PDF (English)

Statistics

Forum

Time Limit: 0.5 second(s)

Memory Limit: 32 MB

The people of Mohammadpur have decided to paint each of their houses red, green, or blue. They've also decided that no two neighboring houses will be painted the same color. The neighbors of house i are houses i-1 and i+1. The first and last houses are not neighbors.

You will be given the information of houses. Each house will contain three integers "R G B" (quotes for clarity only), where R, G and B are the costs of painting the corresponding house red, green, and blue, respectively. Return the minimal total cost required to perform the work.

Input

Input starts with an integer T (≤ 100), denoting the number of test cases.

Each case begins with a blank line and an integer n (1 ≤ n ≤ 20) denoting the number of houses. Each of the next n lines will contain 3 integers "R G B". These integers will lie in the range [1, 1000].

Output

For each case of input you have to print the case number and the minimal cost.

Sample Input

Output for Sample Input

2 4 13 23 12 77 36 64 44 89 76 31 78 45 3 26 40 83 49 60 57 13 89 99

Case 1: 137 Case 2: 96

类似于树塔的dp。后面的涂色方案和前面的一个有关。但是对后面的影响都是一样的。

代码如下:

代码语言:javascript
代码运行次数:0
运行
复制
#include <cstdio>
#include <cstring>
#include <cmath>
#include <queue>
#include <map>
#include <vector>
#include <stack>
#include <algorithm>
using namespace std;
#define INF 0x3f3f3f3f
#define CLR(a,b) memset(a,b,sizeof(a))
#define LL long long
#define PI acos(-1.0)
int main()
{
	int u;
	int n;
	int Case = 1;
	int c[22][5];
	int dp[22][5];
	scanf ("%d",&u);
	while (u--)
	{
		scanf ("%d",&n);
		for (int i = 1 ; i <= n ; i++)
		{
			for (int j = 1 ; j <= 3 ; j++)
				scanf ("%d",&c[i][j]);
		}
		printf ("Case %d: ",Case++);
		dp[1][1] = c[1][1];
		dp[1][2] = c[1][2];
		dp[1][3] = c[1][3];
		for (int i = 2 ; i <= n ; i++)
		{
			dp[i][1] = min(dp[i-1][2] , dp[i-1][3]) + c[i][1];
			dp[i][2] = min(dp[i-1][1] , dp[i-1][3]) + c[i][2];
			dp[i][3] = min(dp[i-1][1] , dp[i-1][2]) + c[i][3];
		}
		printf ("%d\n",min(min(dp[n][1],dp[n][2]),dp[n][3]));
	}
	return 0;
}
本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2025-08-26,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • Input
  • Output
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档