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 ...
随机推荐
- .Net组件程序设计之异步调用
.Net组件程序设计之异步调用 说到异步调用,在脑海中首先想到就是BeginInvoke(),在一些常用对象中我们也会常常见到Invoke()和BeginInvoke(), 要想让自己的组件可以被客户 ...
- js动态生成选项之考试系统(一)
<%@ page language="java" import="java.util.*" pageEncoding="utf-8"% ...
- Module-Zero之版本管理
返回<Module Zero学习目录> 概要介绍 版本实体 版本管理者 概要介绍 绝大多数的SaaS(多租户)应用都有多个具有不同特征的版本(包).因此,他们可以给租户(即客户)提供不同的 ...
- C# Azure 存储-分布式缓存Redis工具类 RedisHelper
using System; using System.Collections.Generic; using Newtonsoft.Json; using StackExchange.Redis; na ...
- 页面静态化技术Freemarker技术的介绍及使用实例.
一.FreeMarker简介 1.动态网页和静态网页差异 在进入主题之前我先介绍一下什么是动态网页,动态网页是指跟静态网页相对应的一种网页编程技术.静态网页,随着HTML代码的生成,页面的内容和显示效 ...
- iOS----自定义UIView,绘制一个UIView
绘制一个UIVIew最灵活的方式就是由它自己完成绘制.实际上你不是绘制一个UIView,你只是子类化了UIView并赋予子类绘制自己的能力.当一个UIVIew需要执行绘图操作的时,drawRect:方 ...
- 【Win 10 应用开发】RTM版的UAP项目解剖
Windows 10 发布后,其实SDK也偷偷地在VS的自定义安装列表中出现了,今天开发人员中心也更新了下载.正式版的SDK在API结构上和以前预览的时候是一样的,只是版本变成10240罢了,所以大家 ...
- MVC4做网站后台:用户管理 —用户
这块进行用户管理,可以浏览.查询已注册的用户,修改用户资料,删除用户等.没有做添加用户,不知是否必要.列表页还是使用easyui的datagrid.这个思路跟用户组的方式差不多. 1.接口Interf ...
- Android调用Jni,非常简单的一个Demo
step1:创建一个android项目 Project Name:jnitest Build Target: Android 1.6 Application Nam ...
- Markdown编辑器入门
欢迎使用博客园的Markdown编辑器 前言 今天早上起来在Ubuntu下操作,所以不能使用Windows Live Writer.所以就直接使用博客园的后台编辑器,开始以为博客园出错了,怎么编辑都没 ...