洛谷 P1417 烹调方案 (01背包+贪心

题意:

明显的一个背包问题,题写的太少了,唉, 但是它的价值是与 t t t有关的,然后 t t t又是不断变化的,
在看了题解以后 我们对相邻的两个任务进行化简会发现价值的变化
只和 b b b, c c c相乘的关系有关, 相乘即可
x c ∗ y b &lt; y c ∗ x b x_c*y_b&lt;y_c*x_b xcyb<ycxb

我们还可以发现一个小小的问题, 时间虽然越靠后 做得的01背包的价值越大,但最大值并不一定是在最后的时间,需要扫一遍时间求最大值

#include <bits/stdc++.h>
using namespace std;

#define cpp_io() {ios::sync_with_stdio(false); cin.tie(NULL);}
#define rep(i,a,n) for (int i=a;i<n;i++)
#define repp(i,a,n) for (int i=a;i<=n;i++)
#define per(i,a,n) for (int i=n-1;i>=a;i--)
#define CLR(a,b) memset(a,(b),sizeof(a))
#define all(x) (x).begin(),(x).end()
#define SZ(x) ((int)(x).size())
#define pb push_back
#define mp make_pair
#define fi first
#define se second
#define ls o<<1
#define rs o<<1|1


typedef long long ll;
typedef vector<int> VI;
const int MAXN = (int)1e5+10;
const int INF = 0x3f3f3f3f;
const int mod = (int)1e9+7;

void F() {
#ifndef ONLINE_JUDGE
    freopen("in.txt","r",stdin);
    freopen("out.txt","w",stdout);
#endif
}

struct node {
    ll a,b,c;
}p[MAXN];
bool cmp(const node &x,const node &y) {
    return x.c*y.b<y.c*x.b;
}
int n,t;
ll dp[MAXN];
int main() {
    cpp_io();
    cin>>t>>n;
    repp(i,1,n) cin>>p[i].a;
    repp(i,1,n) cin>>p[i].b;
    repp(i,1,n) cin>>p[i].c;
    sort(p+1,p+1+n,cmp);
    repp(i,0,n) {
        for(int j=t; j>=p[i].c;--j) {
            dp[j]=max(dp[j],dp[j-p[i].c]+p[i].a-j*p[i].b);
        }
    }
    ll mx=0;
    repp(i,0,t) mx=max(dp[i],mx);
    cout<<mx<<"\n";
    return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值