码迷,mamicode.com
首页 > 其他好文 > 详细

Light oj 1422 - Halloween Costumes

时间:2016-03-28 01:51:33      阅读:147      评论:0      收藏:0      [点我收藏+]

标签:

题目:http://lightoj.com/volume_showproblem.php?problem=1422

技术分享

#include <cstdio>
#include <iostream>

using namespace std; 

int c[105];
int dp[105][105];

int main ()
{
    int T, N;
    scanf("%d", &T);
    for(int kase=1; kase<=T; kase++) {
        scanf("%d", &N);
        for(int i=0; i<N; i++) {
            scanf("%d", &c[i]);
            dp[i][i] = 1;
        }
        for(int step=1; step<N; step++) {
            for(int i=0; i+step<N; i++) {
                int j = i+step;
                dp[i][j] = dp[i][j-1]+1;
                for(int k=i; k<j; k++) {
                    if(c[j]==c[k]) {
                        dp[i][j] = min(dp[i][j], dp[i][k]+dp[k+1][j-1]);
                    }
                }
            }
        }
        printf("Case %d: %d\n", kase, dp[0][N-1]);
    }
    return 0;
}

 

Light oj 1422 - Halloween Costumes

标签:

原文地址:http://www.cnblogs.com/AcIsFun/p/5327556.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!