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 ...
随机推荐
- JavaScript学习笔记之Object
对象(object)是JavaScript的核心概念,也是最重要的数据类型.JavaScript的所有数据都可以被视为对象. 简单说,所谓对象,就是一种无序的数据集合,由若干个“键值对”(key-va ...
- mysql 的 VARCHAR VARCHAR2
mysql 里面竟然没有 VARCHAR2 ??
- 使用JavaMail创建邮件发送邮件
一.RFC882文档简单说明 RFC882文档规定了如何编写一封简单的邮件(纯文本邮件),一封简单的邮件包含邮件头和邮件体两个部分,邮件头和邮件体之间使用空行分隔. 邮件头包含的内容有: from字段 ...
- Atitit事件代理机制原理 基于css class的事件代理
Atitit事件代理机制原理 基于css class的事件代理 1.1. 在javasript中delegate这个词经常出现,看字面的意思,代理.委托1 1.2. 事件代理1 1.3. 代理标准化规 ...
- 视图必须派生自 WebViewPage 或 WebViewPage<TModel>
后端汇总:http://www.cnblogs.com/dunitian/p/4523006.html#efmvc 后来发现原来吧web.config给删了 这就简单了,复制其他项目的web.conf ...
- SQL Server 自动增长过大
一.背景 我们遇到的问题如下图所示:自动增长无端端就按照这样的比例进行增长: (Figure1:问题所在) 尝试使用SSMS修改自动增长值,就会出现下面的错误: (Figure2:错误信息) 遇到上面 ...
- 【WP开发】加密篇:双向加密
说起双向加密,如果以前在.NET开发中弄过加/解密的朋友都不会陌生,常用的算法有DES.AES等.在RT应用程序中,也提供了加密相关的API,算法自然是一样的,只是API的封装方式不同罢了,因为RT不 ...
- OpenCASCADE Performance Test
OpenCASCADE Performance Test eryar@163.com Abstract. Use the Draw Test Harness to test the performan ...
- OpenCascade B-Spline Basis Function
OpenCascade B-Spline Basis Function eryar@163.com Abstract. B-splines are quite a bit more flexible ...
- windows8建立局域网的方法
win8建立局域网的方法:1.首先笔记本有无线网卡且支持 虚拟WIFI ;2.按win+X键,选择"命令提示符(管理员)A"; 3.输入"netsh wlan set h ...