首页 > 其他 > 详细

Codeforces 294B Shaass and Bookshelf(记忆化搜索)

时间:2014-08-01 15:31:21      阅读:332      评论:0      收藏:0      [点我收藏+]

题目

 

记忆化搜索(深搜+记录状态)

感谢JLGG

 

bubuko.com,布布扣
//记忆话搜索
//一本书2中状态,竖着放或者横着放
//初始先都竖着放,然后从左边往右边扫
#include<stdio.h>
#include<string.h>
#include<algorithm>
using namespace std;
int dp[110][210][210];//dp[第几个][厚度][宽度]
int n;
int a[110],b[110];

int rec(int i,int th,int w)
{
    if(dp[i][th][w]!=-1)return dp[i][th][w];
    int res;
    if(i==n)res=th;
    else if(th-a[i]<w+b[i])res=rec(i+1,th,w);//判断合不合法
    else res=min(rec(i+1,th-a[i],w+b[i]),rec(i+1,th,w));
    return dp[i][th][w]=res;
}

int main()
{
    while(scanf("%d",&n)!=EOF)
    {
        int th=0;
        for(int i=0;i<n;i++)
        {
            scanf("%d%d",&a[i],&b[i]);
            th+=a[i];
        }
        memset(dp,-1,sizeof(dp));
        int ans=rec(0,th,0);
        printf("%d\n",ans);
    }
    return 0;
}
View Code

 

Codeforces 294B Shaass and Bookshelf(记忆化搜索),布布扣,bubuko.com

Codeforces 294B Shaass and Bookshelf(记忆化搜索)

原文:http://www.cnblogs.com/laiba2004/p/3884835.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!