HDU 4508 湫湫系列故事――减肥记I

来源:互联网 发布:protel99se软件下载 编辑:程序博客网 时间:2024/05/29 00:32


对于吃货来说,过年最幸福的事就是吃了,没有之一!
  但是对于女生来说,卡路里(热量)是天敌啊!
  资深美女湫湫深谙“胖来如山倒,胖去如抽丝”的道理,所以她希望你能帮忙制定一个食谱,能使她吃得开心的同时,不会制造太多的天敌。

  当然,为了方便你制作食谱,湫湫给了你每日食物清单,上面描述了当天她想吃的每种食物能带给她的幸福程度,以及会增加的卡路里量。
 

Input

  输入包含多组测试用例。
  每组数据以一个整数n开始,表示每天的食物清单有n种食物。 
  接下来n行,每行两个整数a和b,其中a表示这种食物可以带给湫湫的幸福值(数值越大,越幸福),b表示湫湫吃这种食物会吸收的卡路里量。
  最后是一个整数m,表示湫湫一天吸收的卡路里不能超过m。

  [Technical Specification]
  1. 1 <= n <= 100
  2. 0 <= a,b <= 100000
  3. 1 <= m <= 100000
 

Output

  对每份清单,输出一个整数,即满足卡路里吸收量的同时,湫湫可获得的最大幸福值。
 

Sample Input

33 37 79 91051 15 310 36 87 56
 

Sample Output

1020

中文题: 题意不解释。。。。

思路:完全背包。。水题。

#include <stdio.h>#include <string.h>int n;struct Q{    int a;    int b;}q[105];int full;int dp[100005];int max(int a, int b){    if (a > b)return a;    elsereturn b;}int main(){    while (scanf("%d", &n) != EOF)    {memset(dp, -1, sizeof(dp));memset(q, 0, sizeof(q));for (int i = 0; i < n; i ++){    scanf("%d%d", &q[i].a, &q[i].b);}scanf("%d", &full);dp[0] = 0;for (int i = 0; i < n; i ++)    for (int j = q[i].b; j <= full; j ++)    {if (dp[j - q[i].b] >= 0){    dp[j] =  max(dp[j - q[i].b] + q[i].a, dp[j]);}    }int maxx = 0;for (int i = full; i >= 0; i --){    if (dp[i] >= 0)    {if (maxx < dp[i])    maxx = dp[i];    }}printf("%d\n", maxx);    }    return 0;}


原创粉丝点击