程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> ACdreamoj1110(多重背包)

ACdreamoj1110(多重背包)

編輯:C++入門知識

題意:裸的多重背包,水題。


解法:和完全背包一樣,只不過加一個數組,記錄著每個物品用過的次數,多於存儲量時就pass不更新。

還有一種方法是將每個物品用二進制壓縮處理,第一個代碼比較簡單;


代碼:

/******************************************************
* author:xiefubao
*******************************************************/
#pragma comment(linker, "/STACK:102400000,102400000")
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
//freopen ("in.txt" , "r" , stdin);
using namespace std;

#define eps 1e-8
#define zero(_) (abs(_)<=eps)
const double pi=acos(-1.0);
typedef long long LL;
const int Max=100010;
const int INF=1000000007;

int a[103];
int num[103];
int rem[Max];
bool ans[Max];
int n,cap;
int main()
{
    int t;
    //cout<cap||rem[j]>=num[i])
                    continue;
                if(ans[j])
                {
                    if(ans[j+a[i]])
                    {
                        rem[j+a[i]]=min(rem[j+a[i]],rem[j]+1);
                        continue;
                    }
                    ans[j+a[i]]=1;
                    rem[j+a[i]]=rem[j]+1;
                }
            }
        }
        int out=0;
        for(int i=1; i<=cap; i++)
            if(ans[i])
                out++;
        printf("Case %d: %d\n",kk++,out);
    }
    return 0;
}
/*
4 100000
1 12 456 5678
5 5 5 5
*/

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved