zoukankan      html  css  js  c++  java
  • light oj 1047 Neighbor House 动态规划

    题目链接

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

    题意:

          有n户人,打算把他们的房子图上颜色,有red、green、blue三种颜色,每家人涂不同的颜色要花不同的费用,而且相邻两户人家之间的颜色要不同,求最小的总花费费用。

    思路:

         动态规划,这个和刘汝佳算法竞赛入门经典P158的数字三角形有些相似,不过是求最小的值,而且有些限制,每次走到点和上次走的点不在同一列。

    代码:

    #include <stdio.h>
    #include <string.h>
    #include <algorithm>
    
    using namespace std;
    
    int dp[23][4];
    int a[23][4];
    
    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 i = 1; i <= n; i++)
            {
                for (int j = 1; j <= 3; j++)
                    scanf("%d",&a[i][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\n", k, min(dp[n][1], min(dp[n][2], dp[n][3])));
        }
        return 0;
    }
    


  • 相关阅读:
    Coursera台大机器学习基础课程学习笔记2 -- 机器学习的分类
    Coursera台大机器学习基础课程学习笔记1 -- 机器学习定义及PLA算法
    flash项目优化总结
    flash builder4.7bug
    [转] MovieClip转Bitmap方法
    flash builder关掉自动编译功能
    flash builder调试
    我喜欢的两种单例写法
    IE浏览器打开f12才正常
    [转] swf文件加密基础
  • 原文地址:https://www.cnblogs.com/xindoo/p/3595112.html
Copyright © 2011-2022 走看看