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

LightOJ 1422 Halloween Costumes(记忆化搜索)

时间:2015-09-24 20:57:40      阅读:257      评论:0      收藏:0      [点我收藏+]

标签:

题意:给你n天分别要穿的衣服,可以套着穿,但是一旦脱下来就不能再穿了,问这n天要准备几件衣服。
    
=================================================================================
#include<cstdio>
#include<cstring>
#include<iostream>
#include<algorithm>
#include<cmath>
using namespace std;
typedef long long LL;
const LL INF = 0xfffffff;
const LL maxn = 200005;
int a[105], dp[105][105];

int DFS(int L,int R)
{
    if(dp[L][R])
        return dp[L][R];
    if(L == R)
        return 1;
    if(L > R)
        return 0;
    dp[L][R] = DFS(L+1, R) + 1;

    for(int k=L+1; k<= R; k++)
    {
        if(a[L] == a[k])
        {
            dp[L][R] = min(dp[L][R], DFS(L,k-1) + DFS(k+1,R) );
        }
    }
    return dp[L][R];
}

int main()
{
    int T, n, cas = 1;
    scanf("%d", &T);

    while(T--)
    {
        scanf("%d", &n);
        memset(dp, 0, sizeof(dp));
        for(int i=1; i<=n; i++)
            scanf("%d", &a[i]);

        printf("Case %d: %d\n",cas++, DFS(1, n));
    }
    return 0;
}

 

LightOJ 1422 Halloween Costumes(记忆化搜索)

标签:

原文地址:http://www.cnblogs.com/chenchengxun/p/4836288.html

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