zoukankan      html  css  js  c++  java
  • poj 2392 建塔(多重背包+不定上界)

    http://blog.csdn.net/libin56842/article/details/9492351

    这次比较理解那个!dp[j]是为了什么,因为是滚动数组,没有这个的话used那边会出问题

    #include <iostream>
    #include <string>
    #include <cstring>
    #include <cstdlib>
    #include <cstdio>
    #include <cmath>
    #include <algorithm>
    #include <stack>
    #include <queue>
    #include <cctype>
    #include <vector>
    #include <iterator>
    #include <set>
    #include <map>
    #include <sstream>
    using namespace std;
    
    #define mem(a,b) memset(a,b,sizeof(a))
    #define pf printf
    #define sf scanf
    #define spf sprintf
    #define pb push_back
    #define debug printf("!
    ")
    #define MAXN 1010
    #define MAX(a,b) a>b?a:b
    #define blank pf("
    ")
    #define LL long long
    #define ALL(x) x.begin(),x.end()
    #define INS(x) inserter(x,x.begin())
    #define pqueue priority_queue
    #define INF 0x3f3f3f3f
    
    struct node
    {
        int h,c,a;
    }p[405];
    
    int K;
    
    bool dp[40005];
    
    int used[40005];
    
    int cmp(const node& x,const node& y)
    {
        return x.a<y.a;
    }
    
    int main()
    {
        int i,j,k;
        while(~sf("%d",&K))
        {
            for(i=1;i<=K;i++)
            {
                sf("%d%d%d",&p[i].h,&p[i].a,&p[i].c);
            }
    
            sort(p+1,p+K+1,cmp);
    
            /*
            for(i=1;i<=K;i++)
            {
                pf("%d %d %d
    ",p[i].h,p[i].a,p[i].c);
            }*/
    
            mem(dp,false);
            dp[0] = true;
            int ans = 0;
            for(i=1;i<=K;i++)
            {
                mem(used,0);
                for(j=p[i].h;j<=p[i].a;j++)
                {
                    if(!dp[j] && dp[j-p[i].h] && used[j-p[i].h]<p[i].c)
                    {
                        dp[j] = true;
                        used[j] = used[j-p[i].h] + 1;
                        //pf("%d %d %d
    ",i,j,used[j]);
                        if(ans<j) ans = j;
                    }
                }
            }
            pf("%d
    ",ans);
        }
        return 0;
    }
  • 相关阅读:
    给js function的参数设置默认值
    如何让windows服务器IIS支持.apk/.ipa文件下载
    Firefox 设置技巧
    在sql中使用了 hashbytes 函数
    SQL Server 查询处理中的各个阶段(SQL执行顺序)
    Jquery 操作 radio选中值
    gradle更新依赖库
    weex第一节-环境搭建
    安装weex-toolkit老是失败的解决办法
    Android透明度颜色值计算
  • 原文地址:https://www.cnblogs.com/qlky/p/5640582.html
Copyright © 2011-2022 走看看