P1417 烹调方案(洛谷)(排序)

文章描述了一个关于优化食材烹饪顺序以最大化美味指数的问题。给定每种食材的开始时间、结束时间以及美味指数,通过对食材按结束时间的性价比排序,使用动态规划方法更新每个时间点的最大美味指数,最终得出最优解。
摘要由CSDN通过智能技术生成

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;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值