zoukankan      html  css  js  c++  java
  • light oj 1047-neighbor house

    ime Limit:500MS     Memory Limit:32768KB     64bit IO Format:%lld & %llu

    Description

    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

    2

    4

    13 23 12

    77 36 64

    44 89 76

    31 78 45

    3

    26 40 83

    49 60 57

    13 89 99

    Sample Output

    Case 1: 137

    Case 2: 96

    Hint

    Use simple DP

    程序分析:此题的题意为有n户人,打算把他们的房子图上颜色,有red、green、blue三种颜色,每家人涂不同的颜色要花不同的费用,而且相邻两户人家之间的颜色要不同,求最小的总花费费用。我们所要使用的方法就是DP,其中有一个小问题值得注意就是开始我用C提交的时候就会提示CE,之后我们C++交的时候就过了,所以有时候选择语言也是很重要的。

    程序代码:

    #include <stdio.h>
    #include <string.h>
    #include <algorithm>
    
    using namespace std;
    
    int dp[23][4];
    int a[23][4];
    int min(int a,int b)
    {
        if(a>b)
            return b;
        else return a;
    }
    int main()
    {
        int n, t;
        scanf("%d",&t);
        for(int k = 1; k <= t; k++)
        {
            scanf("%d",&n);
            memset(a, 0, sizeof(a));
            memset(dp, 0, sizeof(dp));
            for (int l= 1; l <= n; l++)
            {
                for (int j = 1; j <= 3; j++)
                    scanf("%d",&a[l][j]);
            }
            for (int i = 1; i <= n; i++)
            {
                for (int j = 3; j < 6; j++)
                {
                    dp[i][j%3+1] = a[i][j%3+1] + min(dp[i-1][(j-1)%3+1], dp[i-1][(j+1)%3+1]);
                  //这里我用这种方法避免了分情况讨论,、减少了代码量
     
                  
                }
            }
            printf("Case %d: %d
    ", k, min(dp[n][1], min(dp[n][2], dp[n][3])));
        }
        return 0;
    }
  • 相关阅读:
    2.最详细的WSDD配置文件注释
    1.Apache Axis配置文件WSDD详解
    26. Intellij IDEA 启动项目ClassNotFoundException
    警告: [SetPropertiesRule]{Server/Service/Engine/Host/Context} Setting property ..
    Java 远程通讯技术及原理分析
    Hibernate 中配置属性详解(hibernate.properties)
    SSH之IDEA2017整合Struts2+Spring+Hibernate
    java对象与json对象间的相互转换
    25.怎样在IDEA中使用JUnit4和JUnitGenerator V2.0自动生成测试模块
    24. 在IDEA中使用JUnit进行方法测试
  • 原文地址:https://www.cnblogs.com/yilihua/p/4731172.html
Copyright © 2011-2022 走看看