UVALive 6908---Electric Bike(DP或记录型深搜)
题目链接
problem description
Two years ago, Putri bought an electric bike (e-bike). She likes e-bike a lot since it can assist her in cycling through steep roads when commuting to work. Over time, the battery capacity decreases. Now, her e-bike battery capacity is so low that she needs to carefully plan when to turn on the assist and at which level; different level of assist consumes different amount of energy and produces different assist power.
Putri divides the road that she travels from her home to her workplace into N segments where each segment has a steepness level. For example, the figure below shows a road with N = 7 segments.
Segment #1 #2 #3 #4 #5 #6 #7
Steepness 10 3 0 1 2 15 9
From her home, Putri has to travel from the first road segment, to the second road segment, and so on, until the last segment to reach her work place. In the example above, the first segment has steepness of 10 which means Putri has to pedal her bike with 10 unit of energy. Her e-bike has fixed 4 assist levels where each level generates different power, as shown in the following table:
Assist Level 0 1 2 3
Assist Power 0 4 8 11
Assist level L will consume L unit of energy from the battery and will give Putri additional pedaling assist power according to the table above. Putri can only change the assist level to level L if the battery has at least L energy left and she is at the beginning of a road segment. Setting an assist level where the generated power is higher than the road steepness will cause the excess energy power to be wasted.
For example, if Putri sets the assist level L = 2 at the beginning of the first road segment (with steepness 10), then she only needs to pedal her bike with 2 unit of energy instead of 10 (since her ebike is assisting her with 8 unit of energy) to advance to the second road segment. If Putri sets the assist level L = 3, her e-bike generates more power to handle the steepness 10, thus she does not need to pedal at all, and the excess energy is wasted.
Putri can change the assist level instantly before entering a road segment, however, she does not want to change the assist level more than K times (it’s too tiring). If there is not enough energy in the battery to support the selected assist level for the road segment, the e-bike will shutdown at the beginning of the road segment and Putri has to pedal through the rest of the road segments, i.e. the assist level automatically set to 0 for the rest of the journey. Note that Putri can change her e-bike assist level (given it’s still less than K) at the beginning of the road segment to avoid shutdown by force. Initially at her home, the assist level is set to 0 and the battery is fully charged with E unit of energy. Putri wants to know the minimum energy she will need to pedal the bike to reach the workplace if she utilizes her e-bike optimally.
Input
The first line of input contains T (T ≤ 100) denoting the number of cases. Each case begins with three integers: N, K, and E in a line (1 ≤ N ≤ 1, 000; 0 ≤ K ≤ 10; 0 ≤ E ≤ 50) as described in the problem statement above. The next line contains N non-negative integers denoting the steepness level of i-th segment where i = 1 . . . N respectively. The steepness level of any road segment is at most 15.
Output
For each case, output ‘Case #X: Y ’, where X is the case number starts from 1 and Y is the minimum energy Putri needs to pedal the e-bike from her home to her workplace.
Explanation for 1st sample case:
Putri changes the assist level to 1 at (the beginning of) road segment #2, then change the assist level to 3 at road segment #6. Thus, she needs to pedal with 10 unit of energy for road segment #1 and 4 unit of energy for road segment #6. Note that if she changes the assist level to 1 at road segment #1 and then to assist level 3 at road segment #6, then at the beginning of road segment #7 the battery only has 2 unit of energy left and will automatically shutdown to assist level 0, thus Putri has to pedal with 9 energy for road segment #7.
Explanation for 2nd sample case:
Putri changes the assist level to 3 at road segment #1 and then changes to assist level 2 at road segment #2. Thus, she only needs to pedal 7 unit of energy for road segment #6 and 1 unit of energy for road segment #7.
Explanation for 3rd sample case:
Putri changes the assist level to 3 at road segment #1, then changes to assist level 1 at road segment #2, finally changes to assist level 3 at road segment #6. Thus, she only needs to pedal 4 unit of energy for road segment #6.
Sample Input
5
7 2 10
10 3 0 1 2 15 9
7 2 15
10 3 0 1 2 15 9
7 3 15
10 3 0 1 2 15 9
5 2 5
11 15 1 14 12
15 8 30
2 14 6 1 2 13 14 12 13 12 7 12 1 2 10
Sample Output
Case #1: 14
Case #2: 8
Case #3: 4
Case #4: 34
Case #5: 18
题意:一个人骑电动车去公司,电动车的初始电能是E,电动车有四个档位,0、1、2、3分别对应的输出能量是0、4、8、11 消耗的电能是对应的档位值大小。现在有n段路,每段路需要提供cost[i]的能量才能走过,如果在某一段路的档位对应的输出能量小于cost[i],那么剩余的由这个人提供,如果电动车输出能量大于cost[i],则多余部分浪费掉。现在电动车初始档位为0,求通过这条路且换挡不超过K次的情况下人提供的最小能量,注意:在某一段路时电动车的剩余电能小于当前的档位时,电动车报废,接下来的路由人提供能量;
思路:定义dp[i][j][k][f] 表示走到第i段路换了j次档电动车消耗k的电能,当前档位为f是人所消耗的能量;
#include <iostream>
#include <algorithm>
#include <cstring>
#include <cstdio>
using namespace std;
const int inf=0x3f3f3f3f;
int dp[][][][];
int d[]={,,,};
int cost[]; int main()
{
int T,Case=,N,K,E;
cin>>T;
while(T--)
{
int ans=inf;
scanf("%d%d%d",&N,&K,&E);
for(int i=;i<=N;i++)
scanf("%d",&cost[i]);
memset(dp,inf,sizeof(dp));
dp[][][][]=;
for(int i=;i<=N;i++)
for(int j=;j<=K;j++)
for(int k=;k<=E;k++)
for(int s=;s<;s++)
{
if(k>=s)
for(int p=;p<;p++)
{
if(s==p) dp[i][j][k][s]=min(dp[i][j][k][s],dp[i-][j][k-s][p]+max(,cost[i]-d[s]));
else if(j>) dp[i][j][k][s]=min(dp[i][j][k][s],dp[i-][j-][k-s][p]+max(,cost[i]-d[s]));
if(j==K&&s==) dp[i][j][k][]=min(dp[i][j][k][],dp[i-][j][k][p]+cost[i]);
if(i==N) ans=min(ans,dp[i][j][k][s]);
}
}
printf("Case #%d: %d\n",Case++,ans);
}
return ;
}
还可以深搜:
#include <iostream>
#include <algorithm>
#include <stdio.h>
#include <cstring>
#include <cmath>
#include <map>
#include <bitset>
using namespace std;
typedef long long LL;
const int inf=0x3f3f3f3f;
int N,K,E;
int a[],sum[],p[]={,,,};
int dp[][][][];
bool vis[][][][]; int calc(int pos,int k,int e,int f)
{
if(pos==N+) { return ; }
if(vis[pos][k][e][f]) return dp[pos][k][e][f];
int Sum;
if(e==){
Sum=sum[N]-sum[pos-];
vis[pos][k][e][f]=;
dp[pos][k][e][f]=Sum;
return Sum;
} int tmp=inf;
for(int i=;i<;i++)
{
if(f!=i&&e>=i&&k>){
k--; e-=i; pos++;
Sum=calc(pos,k,e,i)+max(,a[pos-]-p[i]);
tmp=min(tmp,Sum);
k++; e+=i; pos--;
}
else if(f==i&&e>=i){
e-=i; pos++;
Sum=calc(pos,k,e,f)+max(,a[pos-]-p[i]);
tmp=min(tmp,Sum);
e+=i; pos--;
}
else if(k==&&e<f){
Sum=sum[N]-sum[pos-];
vis[pos][k][e][f]=;
dp[pos][k][e][f]=Sum;
return Sum;
}
}
vis[pos][k][e][f]=;
dp[pos][k][e][f]=tmp;
return tmp;
}
int main()
{
int T,Case=;
cin>>T;
while(T--)
{
sum[]=;
scanf("%d%d%d",&N,&K,&E);
for(int i=;i<=N;i++)
{
scanf("%d",&a[i]);
sum[i]=sum[i-]+a[i];
}
memset(vis,,sizeof(vis));
int u=calc(,K,E,);
printf("Case #%d: %d\n",Case++,u);
}
return ;
}
UVALive 6908---Electric Bike(DP或记录型深搜)的更多相关文章
- UVALive 6908 Electric Bike dp
Electric Bike 题目连接: https://icpcarchive.ecs.baylor.edu/index.php?option=com_onlinejudge&Itemid=8 ...
- DP学习记录Ⅰ
DP学习记录Ⅱ 前言 状态定义,转移方程,边界处理,这三部分想好了,就问题不大了.重点在状态定义,转移方程是基于状态定义的,边界处理是方便转移方程的开始的.因此最好先在纸上写出自己状态的意义,越详细越 ...
- DP学习记录Ⅱ
DP学习记录Ⅰ 以下为 DP 的优化. 人脑优化DP P5664 Emiya 家今天的饭 正难则反.考虑计算不合法方案.一个方案不合法一定存在一个主食,使得该主食在多于一半的方法中出现. 枚举这个&q ...
- [IOI1999]花店橱窗布置(DP路径记录)
题目:[IOI1999]花店橱窗布置 问题编号:496 题目描述 某花店现有F束花,每一束花的品种都不一样,同时至少有同样数量的花瓶,被按顺序摆成一行,花瓶的位置是固定的,从左到右按1到V顺序编号,V ...
- poj1015陪审团——DP+路径记录
题目:http://poj.org/problem?id=1015 DP的第一维是选了几个人,第二维是当前D与P的差值,而值存的是当前D与P的和: 技巧1:通过平移避免负角标,即代码中的fix: 技巧 ...
- Codeforces 453B Little Pony and Harmony Chest:状压dp【记录转移路径】
题目链接:http://codeforces.com/problemset/problem/453/B 题意: 给你一个长度为n的数列a,让你构造一个长度为n的数列b. 在保证b中任意两数gcd都为1 ...
- UVALive 6430 (水dp)
https://icpcarchive.ecs.baylor.edu/index.php?option=com_onlinejudge&Itemid=8&page=show_probl ...
- HDU 2296 Ring ( Trie图 && DP && DP状态记录)
题意 : 给出 m 个单词,每一个单词有一个权重,如果一个字符串包含了这些单词,那么意味着这个字符串拥有了其权重,问你构成长度为 n 且权重最大的字符串是什么 ( 若有权重相同的,则输出最短且字典序最 ...
- UVALive - 6952 Cent Savings dp
题目链接: http://acm.hust.edu.cn/vjudge/problem/116998 Cent Savings Time Limit: 3000MS 问题描述 To host a re ...
随机推荐
- [LeetCode] Interleaving String - 交织的字符串
题目如下:https://oj.leetcode.com/problems/interleaving-string/ Given s1, s2, s3, find whether s3 is form ...
- Aspose.Words 16.8 破解版、添加自定义HTML导出Jpeg压缩质量配置
0x01 Aspose.Words 介绍Aspose.Words是一个商业.NET类库,可以使得应用程序处理大量的文件任务.Aspose.Words支持Doc,Docx,RTF,HTML,OpenDo ...
- iOS-SDWebimage底层实现原理
其实有些框架的实现原理,并没有想象中那么难,思想也很简单,主要是更新第三方框架的作者对自己写的代码,进行了多层封装,使代码的可读性降低,也就使得框架看起来比较难.我来实现以下SDWebimage的的曾 ...
- C#设计模式系列:迭代器模式(Iterator)
迭代器模式把对象的职责分离,职责分离可以最大限度减少彼此之间的耦合程度,从而建立一个松耦合的对象.职责分离的要点是对被分离的职责进行封装,并以抽象的方式建立彼此之间的关系. 1.迭代器模式简介 1.1 ...
- 《JS设计模式笔记》 1,单例模式
<script type="text/javascript"> //单例模式 //1,每次点击都会生成一个新的div var createMask=function ( ...
- 通过3个Hello World应用来了解ASP.NET 5应用是如何运行的(3)
设置自定义的入口程序体现应用本身与应用托管之间的分离,它使我们可以创建独立于托管环境的应用,并根据需要寄宿于任何一个我们希望的宿主程序下,对于Web应用来说这一点尤为重要.对于之前的Web应用来说,I ...
- VXLAN 概念(Part II)- 每天5分钟玩转 OpenStack(109)
上一节我们介绍了 VXLAN 的封装格式以及 VTEP.今天我们将通过例子讨论 VXLAN 封装和转发包的过程,以及 Linux 对 VXLAN 的原生支持. VXLAN 包转发流程 VXLAN 在 ...
- NFS Volume Provider(Part I) - 每天5分钟玩转 OpenStack(62)
cinder-volume 支持多种 volume provider,前面我们一直使用的是默认的 LVM,本节我们将增加 NFS volume provider. 虽然 NFS 更多地应用在实验或小规 ...
- 使用Ubuntu 12.04作为日常电脑环境
搜狗输入法出来之后,我觉得有必要写一篇博客说明一下,如何使用Ubuntu作为日常的电脑系统.我使用的Ubuntu版本是12.04,没有使用Ubuntukylin,因为的电脑比较老,使用那个版本,电脑有 ...
- Objective-C中的属性机制
Objective-C 2.0中的属性机制为我们提供了便捷的获取和设置实例变量的方式,也可以说属性为我们提供了一个默认的设置器和访问器的实现.在学习OC中属性之前我们先要知道为什么要为变量实现gett ...