zoukankan      html  css  js  c++  java
  • hdu2159 Fate 二维背包



    #include <cstring>
    #include <string>
    #include <cstdio>
    #include <cmath>
    #include <algorithm>
    #include <vector>
    #include <queue>
    #include <map>
    #define inf 0x3f3f3f3f
    #define ll __int64
    using namespace std;
    
    int n,v,k,s,dp[110][110],w[110],c[110];
    
    int main()
    {
        int i,j,p;
        while(~scanf("%d%d%d%d",&n,&v,&k,&s))
        {
            for(i=1;i<=k;i++)
                scanf("%d%d",&w[i],&c[i]);
    
            memset(dp,0,sizeof dp);
            for(i=1;i<=v;i++)//背包容量
            {
                for(j=1;j<=k;j++)//几种物品
                {
                    for(p=1;p<=s;p++)//选几样
                    {
                        if(i>=c[j])
                            dp[i][p]=max(dp[i][p],dp[i-c[j]][p-1]+w[j]);
                    }
                }
            }
    
            if(dp[v][s]<n) printf("-1
    ");
            else
            {
                for(i=v-1;i>=0;i--)
                {
                   // printf("i:%d dpis:%d
    ",i,dp[i][s]);
                    if(dp[i][s]<n)
                    {
                        printf("%d
    ",v-i-1);
                        break;
                    }
                }
            }
        }
        return 0;
    }
    


  • 相关阅读:
    npx
    EOS踩坑记 2
    Communication Model
    EOS踩坑记
    Windows导入EOS工程
    搭建EOS环境
    加入EOS主网
    Add Inline Actions
    Secondary Indices
    Data Persistence
  • 原文地址:https://www.cnblogs.com/mfrbuaa/p/5124330.html
Copyright © 2011-2022 走看看