P2854 [USACO06DEC]牛的过山车Cow Roller Coaster

题目描述

The cows are building a roller coaster! They want your help to design as fun a roller coaster as possible, while keeping to the budget.

The roller coaster will be built on a long linear stretch of land of length L (1 ≤ L ≤ 1,000). The roller coaster comprises a collection of some of the N (1 ≤ N ≤ 10,000) different interchangable components. Each component i has a fixed length Wi (1 ≤ Wi ≤ L). Due to varying terrain, each component i can be only built starting at location Xi (0 ≤ Xi ≤ L - Wi). The cows want to string together various roller coaster components starting at 0 and ending at L so that the end of each component (except the last) is the start of the next component.

Each component i has a "fun rating" Fi (1 ≤ Fi ≤ 1,000,000) and a cost Ci (1 ≤ Ci ≤ 1000). The total fun of the roller coster is the sum of the fun from each component used; the total cost is likewise the sum of the costs of each component used. The cows' total budget is B (1 ≤ B ≤ 1000). Help the cows determine the most fun roller coaster that they can build with their budget.

奶牛们正打算造一条过山车轨道.她们希望你帮忙,找出最有趣,但又符合预算 的方案. 过山车的轨道由若干钢轨首尾相连,由x=0处一直延伸到X=L(1≤L≤1000)处.现有N(1≤N≤10000)根钢轨,每根钢轨的起点 Xi(0≤Xi≤L- Wi),长度wi(l≤Wi≤L),有趣指数Fi(1≤Fi≤1000000),成本Ci(l≤Ci≤1000)均己知.请确定一 种最优方案,使得选用的钢轨的有趣指数之和最大,同时成本之和不超过B(1≤B≤1000).

输入输出格式

输入格式:

Line 1: Three space-separated integers: L, N and B.

Lines 2..N+1: Line i+1 contains four space-separated integers, respectively: Xi, Wi, Fi, and Ci.

输出格式:

Line 1: A single integer that is the maximum fun value that a roller-coaster can have while staying within the budget and meeting all the other constraints. If it is not possible to build a roller-coaster within budget, output -1.

输入输出样例

输入样例#1:

5 6 10
0 2 20 6
2 3 5 6
0 1 2 1
1 1 1 3
1 2 5 4
3 2 10 2
输出样例#1:

17

说明

Taking the 3rd, 5th and 6th components gives a connected roller-coaster with fun value 17 and cost 7. Taking the first two components would give a more fun roller-coaster (25) but would be over budget.

/*
看到本题不难想到二维费用的背包f[i][j]=max{f[i-a[i].len][j-a[i].w]+a[i].v},但是题目要求所有铁轨首尾相连,所以需要对a[]按起点排个序,剩下的就和上面的方程很像了
*/
#include<iostream>
#include<cstdio>
#include<cstring>
#include<algorithm>
using namespace std;
int L,N,B,f[][],ans=-;
struct node{
int s,t,w,v;
}a[];
bool cmp(node x,node y){return x.s<y.s;}
int main(){
memset(f,-,sizeof(f));
f[][]=;
scanf("%d%d%d",&L,&N,&B);
for(int i=;i<=N;i++){
scanf("%d%d%d%d",&a[i].s,&a[i].t,&a[i].v,&a[i].w);
a[i].t+=a[i].s;
}
sort(a+,a+N+,cmp);
for(int i=;i<=N;i++){
for(int j=B;j>=a[i].w;j--){
if(f[a[i].s][j-a[i].w]>=){
f[a[i].t][j]=max(f[a[i].t][j],f[a[i].s][j-a[i].w]+a[i].v);
}
}
}
for(int i=;i<=B;i++)ans=max(ans,f[L][i]);
printf("%d",ans);
}

最新文章

  1. BAE hibernate c3p0数据库连接池
  2. file /usr/share/mysql/... conflicts with file from package mysql-libs-5.1.73-3.el6_5.x86_ 64 MySQL安装
  3. Ubuntu编译PHP7问题
  4. memcpy vs memmove
  5. android文件存储位置切换
  6. 看人家如何拿到腾讯阿里的offer
  7. POJ 2499 Binary Tree(二叉树,找规律)
  8. ASP.NET 共用类库1
  9. 结构体的vector resize()与初始化
  10. Java自己动手写连接池三
  11. 1-4 criteria用法大全
  12. SIFT算法大综合
  13. P4178 Tree
  14. 微服务 Micro services
  15. P3486 [POI2009]KON-Ticket Inspector
  16. Python练习-迭代-2018.11.28
  17. 理解OSI参考模型
  18. 开启Greenplum DataBase报错:could not bind IPv4 socket: Address already in use
  19. asp.net单元测试及查看代码覆盖率详细示例
  20. Java如何创建用户自定义异常?

热门文章

  1. 【zabbix】自动注册,实现自动发现agent并添加监控(agent不需要任何配置)
  2. 磁卡ID卡IC卡的区别【转】
  3. Sprin Boot2.0之整合Mybatis整合分页插件
  4. echarts如何显示在页面上
  5. oracle数据库如何备份一张表
  6. 如何用命令行删除EasyBCD开机选择项?
  7. 分享知识-快乐自己:Struts2(动态方法、动态结果、通配符、方法内部跳转、action跳转、OGNL 的使用及注意事项)
  8. Mybatis异常_03_Invalid bound statement (not found)
  9. 机器学习:决策树--python
  10. PS 图像调整— — gain and bias