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

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

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

标签:style   blog   http   color   os   io   for   art   

题目

 

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

感谢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(记忆化搜索)

标签:style   blog   http   color   os   io   for   art   

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

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