【题解】P2854 [USACO06DEC]牛的过山车Cow Roller Coaster

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.

思路

  • 本题与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<iostream>
#include<cstdio>
#include<algorithm>
#include<cstring>
#define ll long long
#define inf 1324567
using 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<yy.x;}
inline int read(){
    int x=0,w=1;
    char ch=getchar();
    while((ch<‘0‘||ch>‘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

时间: 2024-10-13 04:49:24

【题解】P2854 [USACO06DEC]牛的过山车Cow Roller Coaster的相关文章

[luoguP2854] [USACO06DEC]牛的过山车Cow Roller Coaster(DP + sort)

传送门 先按照起点 sort 一遍. 这样每一个点的只由前面的点决定. f[i][j] 表示终点为 i,花费 j 的最优解 状态转移就是一个01背包. ——代码 1 #include <cstdio> 2 #include <cstring> 3 #include <iostream> 4 #include <algorithm> 5 6 int L, N, B; 7 int f[10001][1001]; 8 9 inline int read() 10

【题解】[Usaco2006 Dec]Cow Roller Coaster

01背包,难点在于多了一个维度(二维01背包) 有费用(成本这里称"奶牛币"),有价值(有趣指数这里称"fun值"),还有一个限制条件--轨道要求连续,切必须到达终点 既然有两个限制维度,那咱就开一个二维数组:F[i][j](为了避免与变量名重复,我这里使用大写F,代码里用小写f) F[i][j]表示:从轨道的起点某起点使用轨道,花费j奶牛币,到达该轨道的终点i,可以获得的最大的fun值 于是就有方程: F[x[i]+w[i]][j]=max(F[x[i]+w[i]

HDU 2063 过山车 二分图题解

一个男女搭配的关系图,看可以凑成多少对,基本和最原始的一个二分图谜题一样了,就是 一个岛上可以凑成多少对夫妻的问题. 所以是典型的二分图问题. 使用匈牙利算法,写成两个函数,就非常清晰了. 本程序还带分配释放程序,当然oj一般不需要.但是好的程序一定要. #include <stdio.h> #include <stdlib.h> int K, M, N, a, b; int *linker; bool **gra, *used; void initGraph() { gra =

过山车(最大匹配)

过山车 Time Limit: 1000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 15107    Accepted Submission(s): 6623 Problem Description RPG girls今天和大家一起去游乐场玩,终于可以坐上梦寐以求的过山车了.可是,过山车的每一排只有两个座位,而且还有条不成文的规矩,就是每个女生必须找 个个男生做pa

过山车(二分图匹配)

题目连接:http://acm.hdu.edu.cn/showproblem.php?pid=2063 hdu_2063:过山车 Time Limit: 1000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 14852    Accepted Submission(s): 6544 Problem Description RPG girls今天和大家一起去游乐场玩,终

过山车

题意 男女匹配,最多组合数 题解 匈牙利算法 Problem DescriptionRPG girls今天和大家一起去游乐场玩,终于可以坐上梦寐以求的过山车了.可是,过山车的每一排只有两个座位,而且还有条不成文的规矩,就是每个女生必须找个个男生做partner和她同坐.但是,每个女孩都有各自的想法,举个例子把,Rabbit只愿意和XHD或PQK做partner,Grass只愿意和linle或LL做partner,PrincessSnow愿意和水域浪子或伪酷儿做partner.考虑到经费问题,bo

hdu-2063 过山车(二分图)

Time limit1000 ms Memory limit32768 kB RPG girls今天和大家一起去游乐场玩,终于可以坐上梦寐以求的过山车了.可是,过山车的每一排只有两个座位,而且还有条不成文的规矩,就是每个女生必须找个个男生做partner和她同坐.但是,每个女孩都有各自的想法,举个例子把,Rabbit只愿意和XHD或PQK做partner,Grass只愿意和linle或LL做partner,PrincessSnow愿意和水域浪子或伪酷儿做partner.考虑到经费问题,boss刘

旅游 - 珠海长隆海洋王国 - 鹦鹉过山车

说来惭愧,三十多岁的人从来没坐过过山车.以往没坐过不是因为胆小,只是没有机会,几年前有一次已经把车开到了欢乐谷门口,但硬是被无穷无尽的长队给吓退.难得这次有机会,就争取感受一把.早上进园的时候已经很晚,原本还担心要排很久的队伍,实际走到那个僻静的入口时并没有看到什么人.穿过长长长长的幽深小径之后来到上车点.前面只稀稀拉拉排了十几个人,等了一辆车就排到了.本来想坐第一排最外侧的位置,可惜放眼镜的时候被人抢坐,只能坐在第三排的外侧.耳边都是在说什么很害怕不想坐了,我也稍微有了一点紧张.坐上之后盖好固

[ACM] HDU 2063 过山车 (二分图,匈牙利算法)

过山车 Time Limit: 1000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 11509    Accepted Submission(s): 5066 Problem Description RPG girls今天和大家一起去游乐场玩,最终能够坐上梦寐以求的过山车了.但是,过山车的每一排仅仅有两个座位,并且还有条不成文的规矩,就是每一个女生必须找个个男生做