zoukankan      html  css  js  c++  java
  • Coloring Trees

    Coloring Trees
    time limit per test
    2 seconds
    memory limit per test
    256 megabytes
    input
    standard input
    output
    standard output

    ZS the Coder and Chris the Baboon has arrived at Udayland! They walked in the park where n trees grow. They decided to be naughty and color the trees in the park. The trees are numbered with integers from 1 to n from left to right.

    Initially, tree i has color ci. ZS the Coder and Chris the Baboon recognizes only m different colors, so 0 ≤ ci ≤ m, where ci = 0 means that tree i is uncolored.

    ZS the Coder and Chris the Baboon decides to color only the uncolored trees, i.e. the trees with ci = 0. They can color each of them them in any of the m colors from 1 to m. Coloring the i-th tree with color j requires exactly pi, j litres of paint.

    The two friends define the beauty of a coloring of the trees as the minimum number of contiguous groups (each group contains some subsegment of trees) you can split all the n trees into so that each group contains trees of the same color. For example, if the colors of the trees from left to right are 2, 1, 1, 1, 3, 2, 2, 3, 1, 3, the beauty of the coloring is 7, since we can partition the trees into 7 contiguous groups of the same color : {2}, {1, 1, 1}, {3}, {2, 2}, {3}, {1}, {3}.

    ZS the Coder and Chris the Baboon wants to color all uncolored trees so that the beauty of the coloring is exactly k. They need your help to determine the minimum amount of paint (in litres) needed to finish the job.

    Please note that the friends can't color the trees that are already colored.

    Input

    The first line contains three integers, nm and k (1 ≤ k ≤ n ≤ 100, 1 ≤ m ≤ 100) — the number of trees, number of colors and beauty of the resulting coloring respectively.

    The second line contains n integers c1, c2, ..., cn (0 ≤ ci ≤ m), the initial colors of the trees. ci equals to 0 if the tree number i is uncolored, otherwise the i-th tree has color ci.

    Then n lines follow. Each of them contains m integers. The j-th number on the i-th of them line denotes pi, j (1 ≤ pi, j ≤ 109) — the amount of litres the friends need to color i-th tree with color jpi, j's are specified even for the initially colored trees, but such trees still can't be colored.

    Output

    Print a single integer, the minimum amount of paint needed to color the trees. If there are no valid tree colorings of beauty k, print  - 1.

    Examples
    input
    3 2 2
    0 0 0
    1 2
    3 4
    5 6
    output
    10
    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[i][j][k]表示前i棵树,第i棵树用了j染料,美丽值为k的最小花费;

       转移时把前一棵树状态转移过来即可;

    代码:

    #include <iostream>
    #include <cstdio>
    #include <cstdlib>
    #include <cmath>
    #include <algorithm>
    #include <climits>
    #include <cstring>
    #include <string>
    #include <set>
    #include <map>
    #include <queue>
    #include <stack>
    #include <vector>
    #include <list>
    #define rep(i,m,n) for(i=m;i<=n;i++)
    #define rsp(it,s) for(set<int>::iterator it=s.begin();it!=s.end();it++)
    #define mod 1000000007
    #define inf 0x3f3f3f3f
    #define vi vector<int>
    #define pb push_back
    #define mp make_pair
    #define fi first
    #define se second
    #define ll long long
    #define pi acos(-1.0)
    #define pii pair<int,int>
    const int maxn=1e2+10;
    const int dis[4][2]={{0,1},{-1,0},{0,-1},{1,0}};
    using namespace std;
    ll gcd(ll p,ll q){return q==0?p:gcd(q,p%q);}
    ll qpow(ll p,ll q){ll f=1;while(q){if(q&1)f=f*p%mod;p=p*p%mod;q>>=1;}return f;}
    int n,m,k,t,q,co[maxn][maxn],c[maxn];
    ll dp[maxn][maxn][maxn];
    int main()
    {
        int i,j;
        rep(i,0,100)rep(j,0,100)rep(k,0,100)dp[i][j][k]=1e18;
        scanf("%d%d%d",&n,&m,&q);
        rep(i,1,n)scanf("%d",&c[i]);
        rep(i,1,n)rep(j,1,m)scanf("%d",&co[i][j]);
        i=1;
        if(i==1)
        {
            if(c[i])dp[1][c[i]][1]=0;
            else
            {
                rep(j,1,m)dp[1][j][1]=co[1][j];
            }
        }
        rep(i,2,n)
        {
            if(c[i])
            {
                rep(j,1,m)rep(k,1,100)
                {
                    if(j==c[i])dp[i][j][k]=min(dp[i-1][j][k],dp[i][j][k]);
                    else dp[i][c[i]][k]=min(dp[i-1][j][k-1],dp[i][c[i]][k]);
                }
            }
            else
            {
                rep(j,1,m)rep(k,1,100)rep(t,1,m)
                {
                    dp[i][j][k]=min(dp[i][j][k],t==j?dp[i-1][t][k]+co[i][j]:dp[i-1][t][k-1]+co[i][j]);
                }
            }
        }
        ll mi=1e18;
        rep(i,1,m)mi=min(dp[n][i][q],mi);
        printf("%lld
    ",mi==1e18?-1:mi);
        //system("pause");
        return 0;
    }
  • 相关阅读:
    DEBIAN下中文显示
    SpringMVC整合Quartz实现定时任务以及Tomcat服务执行初始化定时任务
    SpringMVC 配置定时执行任务
    Mybatis update In
    mybatis在xml文件中处理大于号小于号的方法
    解决Cannot change version of project facet Dynamic web module to 2.5
    android 圆角边框及图片
    Android MotionEvent事件响应机制
    android:configChanges属性
    Android之ScrollView嵌套ListView
  • 原文地址:https://www.cnblogs.com/dyzll/p/5821032.html
Copyright © 2011-2022 走看看