【DP】【01背包】【完全背包】Birthday 题解

n个物品m元钱,每个物品给出单价、权值以及第一次购买时赠送的权值

其实就是01背包和完全背包套一起,解法其实写一个背包判一个也可以过

#include <iostream>
#include <cstdio>
#include <cstring>
#include <string>
#include <set>
#include <queue>
#include <algorithm>
#include <vector>
#include <cstdlib>
#include <cmath>
#include <ctime>
#include <stack>
#define INF 2147483647
#define LL long long
#define clr(x) memset(x, 0, sizeof x)
#define digit (ch <  '0' || ch >  '9')

using namespace std;

template <class T> inline void read(T &x) {
    int flag = 1; x = 0;
    register char ch = getchar();
    while( digit) { if(ch == '-')  flag = -1; ch = getchar(); }
    while(!digit) { x = (x<<1)+(x<<3)+ch-'0'; ch = getchar(); }
    x *= flag;
}

const int maxn = 2005;
const int maxm = 4005;
int n,m,c;
int w[maxn],a[maxn],b[maxn],dp[maxn];

int main() {
    freopen("birthday.in","r",stdin);
    freopen("birthday.out","w",stdout);
    read(n); read(m);
    for(register int i = 1; i <= n; i++) {
        read(w[i]), read(a[i]), read(b[i]);
        int flag = 0; a[i] += b[i];
        for(register int j = m; j >= w[i]; j--) {
            dp[j] = max(dp[j], dp[j-1]);
            if(dp[j-w[i]]+a[i] > dp[j]) flag = 1, dp[j] = dp[j-w[i]]+a[i];
        }
        a[i] -= b[i];
        if(flag == 1) for(register int j = w[i]; j <= m; j++) {
            dp[j] = max(dp[j], dp[j-1]);
            if(dp[j-w[i]]+a[i] > dp[j]) dp[j] = dp[j-w[i]]+a[i];
        }
    }
    printf("%d",dp[m]);
    return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值