P1417 烹调方案 - 洛谷 | 计算机科学教育新生态 (luogu.com.cn)
一共有n件食材,每件食材有三个属性,ai,bi和ci,如果在t时刻完成第i样食材则得到ai-t*bi的美味指数,用第i件食材做饭要花去ci的时间。设计烹调方案使得美味指数最大
#include <iostream>
#include <bits/stdc++.h>
#include <algorithm>
#include <sstream>
#include <unordered_map>
#include <set>
#include <queue>
#include <deque>
#include <map>
#include <string>
#include <cstring>
#define x first
#define y second
#define ios ios::sync_with_stdio(0),cin.tie(0),cout.tie(0);
using namespace std;
typedef pair<int,int> PII;
typedef pair<char,int> PCI;
typedef long long LL;
typedef unsigned long long ULL;
const int N=100010, INF = 1e9 ;
struct food{
LL a,b,c;
bool operator<(const food &W) const
{
return W.b * c < b* W.c ;
}
}f[N];
int n,m;
LL c[N];
void solve()
{
cin>>m>>n;
for(int i=1;i<=n;i ++ )cin>>f[i].a;
for(int i=1;i<=n;i ++ )cin>>f[i].b;
for(int i=1;i<=n;i ++ )cin>>f[i].c;
sort(f+1,f+1+n);
LL res=0;
for(int i=1;i<=n;i ++ )
for(int j=m;j>=f[i].c;j -- )
{
c[j]= max(c[j],c[j-f[i].c] + f[i].a - j * f[i].b);
res=max(res,c[j]);
}
cout<<res<<endl;
}
int main()
{
ios
int T=1;
// cin>>T;
while(T -- )
{
solve();
}
return 0;
}