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

HDU OJ Dividing 題目1059

編輯:C++入門知識

HDU OJ Dividing 題目1059


??

多重背包問題

#include
#include
#include
using namespace std;
int mar[7],f[120005],v,k;
void ZeroOnePack(int va,int c
{
for(int i = v ; i >= va; i--)
if(f[i-va]+c>f[i])
f[i] = f[i-va]+c;
}
void complatePack(int va,int c)
{
for(int i = va; i <= v; i++)
if(f[i-va]+c>f[i])
f[i] = f[i-va]+c;
}
void mutilPack(int va,int c,int n)
{
if(n*va>=v)
complatePack(va,c);
else
{
int count = 1;
while(count {
ZeroOnePack(count*va,count*c);
n -=count;
count =2*count;
}
ZeroOnePack(n*va,n*c);
}
}
int main()
{
int total,num=1;
while(1)
{
total = 0;
for(int i = 1; i<7;i++)
{
scanf(%d,&mar[i]);
total += i*mar[i];
}
if(total==0)break;
if(total%2)
{
printf(Collection #%d: Can't be divided. ,num);
num++;
continue;
}
v = total/2;
memset(f,0,sizeof(f));
for(int i=1;i<7;i++)
mutilPack(i,i,mar[i]);
if(f[v]==v) printf(Collection #%d: Can be divided. ,num);
else printf(Collection #%d: Can't be divided. ,num);
num++;
}
return 0;
}

 

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