HDU 1059 揹包問題

2021-06-13 16:14:00 字數 480 閱讀 2906

///

///揹包問題

///題意:輸入6個整數,分別表示1到6六個數字的個數,問能否組合成兩組,這兩組所有數字的總和相同

#include#include#include#include#include#include#include#includeusing namespace std;

const int maxn=120005;

bool flage[maxn];

int use[maxn];

int main()

if(!sum)break;

q++;

memset(flage,false,sizeof(flage));

flage[0]=true;

for(int i=1; i<7; ++i) {

memset(use,0,sizeof(use));

for(int j=i; j

HDU 1059 多重揹包

個人覺得,這個可以作為多重揹包的模板使用,其中包括了簡單的0 1揹包和完全揹包,分清楚它們三個的區別。include include define n 60005 define max a,b a b?a b int c n void complete int cost,int weight,int...

hdu 1059 多重揹包

題目的意思 有一堆大理石,按其大小分為1 6 種價值,兩個人想分得的價值相同的大理石,已知每種價值的大理石個數,問是否能讓兩個人分得價值相同的大理石?題目輸入 1 0 1 2 0 0 1 0 0 0 1 1 0 0 0 0 0 0 題目輸出 collection 1 can t be divided...

hdu1059 多重揹包

這道剛開始都沒想出來。後來發現我以前做了一道和這個完全一樣的題,就是計蒜客的平分娃娃,好菜呀 t t 說的可能有些繁瑣。大佬可以忽略,直接看 一道經典的多重揹包問題,但是會卡時間,用二進位制優化一下就解決了。這裡重點講思路,題目問的如何將一堆彈珠均等對半分,可以先這樣想,乙個彈珠價值6,它的體積也是...