CSU1613: Elephants(分组背包)

Description

Zuosige always has bad luck. Recently, he is in hospital because of pneumonia. While he is taking his injection, he feels extremely bored. However, clever Zuosige comes up with a new game.

Zuosige likes elephants very much. Today he finds many types of elephant dolls. Each type has dolls in different colors or different sizes. Zuosige assigned a preference value to each of these dolls, and is willing to buy some. However, Zuosige has limited
money, so he can only choose at most one doll for each type. Please help Zuosige calculate the maximum total preference value of the dolls he can buy without exceeding his money limit.

Input

The first line contains one integer T, indicating the number of test cases.

In one test case, there are several lines.

In the first line, there are two integers N and M (1<=N<=20, 1<=M<=1000), indicating the number of types and the money he has.

In the following N lines, each line begin with an integer ci (1<=ci<=50), indicating the number of different dolls in the i-th type. Following in the same line there are 2*ci integers, every two of them describe a doll, in order
of wi and vi (1<=wi, vi<=1000), indicating the price and the preference value of the doll.

Output

For each test case, output one integer in one line indicating the answer. It is guaranteed that Zuosige can always buy one doll from each type.

Sample Input

1
3 15
4 4 3 5 1 4 3 2 7
5 2 2 4 6 4 4 1 7 5 3
3 3 3 4 1 4 10

Sample Output

24

HINT

Source

题意:有n种类型东西,每种类型有c个不同的物品,给出每个物品的价值与容量,每种类型的物品只能选一个问在背包大小为m的情况下能得到最大的价值是多少

分组背包模板题

#include <iostream>
#include <stdio.h>
#include <string.h>
#include <stack>
#include <queue>
#include <map>
#include <set>
#include <vector>
#include <math.h>
#include <algorithm>
using namespace std;
#define ls 2*i
#define rs 2*i+1
#define up(i,x,y) for(i=x;i<=y;i++)
#define down(i,x,y) for(i=x;i>=y;i--)
#define mem(a,x) memset(a,x,sizeof(a))
#define w(a) while(a)
#define LL long long
const double pi = acos(-1.0);
#define N 1000005
#define mod 19999997
const int INF = 0x3f3f3f3f;
#define exp 1e-8 

struct node
{
    int v,w;
}a[25][55];
int len[25]; 

int cmp(node a,node b)
{
    return a.v*b.w>b.v*b.w;
}
int dp[1005];
int main()
{
    int t,n,m,i,j,k;
    cin>>t;
    w(t--)
    {
        scanf("%d%d",&n,&m);
        up(i,1,n)
        {
            scanf("%d",&len[i]);
            up(j,1,len[i])
            {
                scanf("%d%d",&a[i][j].w,&a[i][j].v);
            }
        }
        mem(dp,0);
        for(k = 1; k<=n; k++)
        {
            for(i = m; i>=0; i--)
            {
                for(j = 1;j<=len[k];j++)
                {
                    if(a[k][j].w<=i)
                          dp[i] = max(dp[i],dp[i-a[k][j].w]+a[k][j].v);
                }
            }
        }
        printf("%d\n",dp[m]);
    } 

    return 0;
}
时间: 2024-10-17 09:58:10

CSU1613: Elephants(分组背包)的相关文章

VijosP1250:分组背包

背景 Wind设计了很多机器人.但是它们都认为自己是最强的,于是,一场比赛开始了~ 描述 机器人们都想知道谁是最勇敢的,于是它们比赛搬运一些物品. 它们到了一个仓库,里面有n个物品,每个物品都有一个价值Pi和重量Wi,但是有些物品放在一起会爆炸,并且爆炸具有传递性.(a和b会爆炸.b和c会爆炸则a和c会爆炸)机器人们可不想因此损失自己好不容易从Wind那里敲诈来的装备,于是它们想知道在能力范围内,它们最多可以拿多少价值的物品. 你能帮助它们吗? 格式 输入格式 每组测试数据第1行为n,Wmax,

HDU-1011 Starship Troopers (树形DP+分组背包)

题目大意:给一棵有根带点权树,并且给出容量.求在不超过容量下的最大权值.前提是选完父节点才能选子节点. 题目分析:树上的分组背包. ps:特判m为0时的情况. 代码如下: # include<iostream> # include<cstdio> # include<vector> # include<cstring> # include<algorithm> using namespace std; const int N=105; const

HDU 4003 Find Metal Mineral (树形DP,树形分组背包,经典)

题意:给定一棵树图,n个节点,有边权,要派k<11个机器人从节点s出发,遍历所有的点,每当1只机器人经过1条边时就会花费该边的边权,边是可重复走的.问遍历完所有点的最小花费? 思路: 非常经典,首先需要知道一点,才能往下推理.就是“如果在t点派c个机器人往孩子u,那么最多只有1个机器人能走会回来到t,否则花费总是不划算的”. 稍微证明一下: (1)假设派1个机器人往u,逛一圈回到u的父亲t,花费v= 子树u的边权和*2 + e(t,u)*2.若机器人不要了,那花费肯定比v还要少. (2)假设派2

HDU 1712 ACboy needs your help-dp-(分组背包模型)

题意:n门课程用m天来学习,每门课用不同的天数来学习会有不同的学分,求能得到的最大的学分 分析:第一次接触分组背包.分组背包的模型就是不同的物品有不同的花费和价值,求在规定花费内能得到的最大的价值,这前面跟以前的背包最大的不同是物品分为几组,每组内的物品最多只能选一种:dp[i][j]表示前i组花费j能得到的最大的价值,不过实际在做的时候用一维数组就可以了 公式: for 组i for 花费j (从大到小) for 组内物品k if(j>=c[k]) dp[j]=max(dp[j],dp[j-c

hdu 1712 分组背包

背景:1Y,01背包多加了一个挑选循环而已. 分组背包的典型描述:对于很多背包,把它分为k个组,每个组内的组员是相互冲突的,所以只能选择一个. 我的代码: #include<cstdio> #include<iostream> #include<cstring> using namespace std; int main(void){ int n,m; while(scanf("%d%d",&n,&m),n*n+m*m){ int c

hdu4003 树形dp+分组背包

http://acm.hdu.edu.cn/showproblem.php?pid=4003 Problem Description Humans have discovered a kind of new metal mineral on Mars which are distributed in point‐like with paths connecting each of them which formed a tree. Now Humans launches k robots on

【HDU1712】ACboy needs your help(分组背包)

将背包九讲往后看了看,学习了一下分组背包.来做几道入门题,试试手. 1 #include <iostream> 2 #include <cstring> 3 #include <cstdlib> 4 #include <cstdio> 5 #include <cmath> 6 #include <cctype> 7 #include <algorithm> 8 #include <numeric> 9 #inc

洛谷——P1757 通天之分组背包

https://www.luogu.org/problem/show?pid=1757#sub 题目背景 直达通天路·小A历险记第二篇 题目描述 自01背包问世之后,小A对此深感兴趣.一天,小A去远游,却发现他的背包不同于01背包,他的物品大致可分为k组,每组中的物品相互冲突,现在,他想知道最大的利用价值是多少. 输入输出格式 输入格式: 两个数m,n,表示一共有n件物品,总重量为m 接下来n行,每行3个数ai,bi,ci,表示物品的重量,利用价值,所属组数 输出格式: 一个数,最大的利用价值

D. Arpa&#39;s weak amphitheater and Mehrdad&#39;s valuable Hoses 分组背包模板题

http://codeforces.com/problemset/problem/742/D 并查集预处理出所有关系. 一开始的时候,我预处理所有关系后,然后选择全部的时候,另起了一个for,然后再判断. 这样是不对的.因为这样使得同一组里面可能选择了两次. 3 0 2 1 2 3 1 1 3 #include <cstdio> #include <cstdlib> #include <cstring> #include <cmath> #include &