博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
【题解】P2854 [USACO06DEC]牛的过山车Cow Roller Coaster
阅读量:4485 次
发布时间:2019-06-08

本文共 3393 字,大约阅读时间需要 11 分钟。

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 100 2 20 62 3 5 60 1 2 11 1 1 31 2 5 43 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.

思路

  • 本题与01背包相似
  • 但不同的是添加了对长度与位置的限制
  • 那么只要在一维的01背包基础上增加一维表示位置即可
  • $f[k,j]$表示使用j钱铺到k的最优值,$g[]$表示欢乐值,$w[]$表示长度,$c[]$表示费用

$$if(x[i]+w[i]=k) f[k,j]=max(f[k-w[i],j-c[i]]+g[i],f[k,j])$$

  • 但这样超时,只有x[i]+w[i]=k时才需要考虑转移,那么我们就可以将方程化为

$$f[v][j]=max(f[u][j-c[i]]+g[i],f[v][j]) v=u+w[i]$$

  • 但这样就要对数据进行排序才能解决无后效性的问题

代码

#include
#include
#include
#include
#define ll long long#define inf 1324567using namespace std;ll l,n,b,ans,f[1002][1002];struct po{ ll x,w,f,c;}a[10009];bool cmp(po xx,po yy){
return xx.x
'9')&&ch!='-') ch=getchar(); if(ch=='-') w=-1,ch=getchar(); while(ch>='0'&&ch<='9') x=(x<<3)+(x<<1)+ch-48,ch=getchar(); return x*w;}int main(){ freopen("p2854.in","r",stdin); freopen("p2854.out","w",stdout); l=read(),n=read(),b=read(); for(ll i=1;i<=n;i++) a[i].x=read(),a[i].w=read(),a[i].f=read(),a[i].c=read(); sort(a+1,a+n+1,cmp); memset(f,-1,sizeof(f)); ans=-inf; f[0][0]=0; for(ll i=1;i<=n;i++) { ll u=a[i].x; ll v=a[i].x+a[i].w; for(ll j=b;j>=a[i].c;j--) if(f[u][j-a[i].c]!=(-1)) f[v][j]=max(f[u][j-a[i].c]+a[i].f,f[v][j]); //f[u,j]表示用j的钱铺到u的最优值 } for(ll i=0;i<=b;i++) ans=max(ans,f[l][i]); printf("%lld\n",ans); return 0;}

转载于:https://www.cnblogs.com/bbqub/p/8423206.html

你可能感兴趣的文章
NFS及RPC讲解
查看>>
Ideal-image-slider 幻灯片
查看>>
JQuery flot API文档 中文版
查看>>
AngularJS+ JqueryMobile+ PhoneGap 打造APP
查看>>
MySQL修改表、字段、库的字符集及字符集说明
查看>>
ubuntu16.04下gmt5.4.1的安装
查看>>
有用的网站
查看>>
03XML Schema Definition
查看>>
VS+QT中文乱码问题
查看>>
FPGA开发全攻略——综合
查看>>
Idea Request method 'HEAD' not supported
查看>>
函数模板
查看>>
C#压缩文件为zip格式
查看>>
HDU 3861 The King’s Problem(tarjan连通图与二分图最小路径覆盖)
查看>>
媒体播放器三大底层架构
查看>>
如何在win10+vs2013上配置MPI并行编程环境
查看>>
Python学习第二十一节(继承顺序,super)
查看>>
KH4 删除字典数据
查看>>
socket.io,远程控制你的幻灯片
查看>>
Android窃取用户信息新思路
查看>>