博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
HDU 1548 A strange lift(递归模拟标记)
阅读量:4138 次
发布时间:2019-05-25

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

A strange lift

Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 18738 Accepted Submission(s): 6932
Problem Description
There is a strange lift.The lift can stop can at every floor as you want, and there is a number Ki(0 <= Ki <= N) on every floor.The lift have just two buttons: up and down.When you at floor i,if you press the button "UP" , you will go up Ki floor,i.e,you will go to the i+Ki th floor,as the same, if you press the button "DOWN" , you will go down Ki floor,i.e,you will go to the i-Ki th floor. Of course, the lift can't go up high than N,and can't go down lower than 1. For example, there is a buliding with 5 floors, and k1 = 3, k2 = 3,k3 = 1,k4 = 2, k5 = 5.Begining from the 1 st floor,you can press the button "UP", and you'll go up to the 4 th floor,and if you press the button "DOWN", the lift can't do it, because it can't go down to the -2 th floor,as you know ,the -2 th floor isn't exist.
Here comes the problem: when you are on floor A,and you want to go to floor B,how many times at least he has to press the button "UP" or "DOWN"?
Input
The input consists of several test cases.,Each test case contains two lines.
The first line contains three integers N ,A,B( 1 <= N,A,B <= 200) which describe above,The second line consist N integers k1,k2,....kn.
A single 0 indicate the end of the input.
Output
For each case of the input output a interger, the least times you have to press the button when you on floor A,and you want to go to floor B.If you can't reach floor B,printf "-1".
Sample Input
5 1 53 3 1 2 50
Sample Output
3  
/*题目意思是:有N层电梯,输入A B 要你从A到B第i层电梯可以升降ki层,但是不能小于1或大于n;问能否到B思路:数组标记,从第一层枚举上或下,回朔,若都不行,则无解 */#include
#include
using namespace std;const int N=200+5;const int INF=1000000000;bool book[N];int k[N];int a,b,n,re;void dfs(int now,int sum){ if(now==b) { if(re>sum) re=sum; return; } if(re<=sum) return; int ne; ne=now+k[now]; if(ne<=n){ if(book[ne]==0){ book[ne]=1; dfs(ne,sum+1); book[ne]=0; } } ne=now-k[now]; if(ne>=1){ if(book[ne]==0){ book[ne]=1; dfs(ne,sum+1); book[ne]=0; } }}int main(){ while(cin>>n){ if(n==0) break; cin>>a>>b; memset(book,0,sizeof(book)); for(int i=1;i<=n;i++) cin>>k[i]; re=INF; book[a]=1; dfs(a,0); if(re!=INF) cout<
<

转载地址:http://bdmvi.baihongyu.com/

你可能感兴趣的文章
论文翻译:《一个包容性设计的具体例子:聋人导向可访问性》
查看>>
基于“分形”编写的交互应用
查看>>
《融入动画技术的交互应用》主题博文推荐
查看>>
链睿和家乐福合作推出下一代零售业隐私保护技术
查看>>
Unifrax宣布新建SiFAB™生产线
查看>>
艾默生纪念谷轮™在空调和制冷领域的百年创新成就
查看>>
NEXO代币持有者获得20,428,359.89美元股息
查看>>
Piper Sandler为EverArc收购Perimeter Solutions提供咨询服务
查看>>
RMRK筹集600万美元,用于在Polkadot上建立先进的NFT系统标准
查看>>
JavaSE_day14 集合中的Map集合_键值映射关系
查看>>
异常 Java学习Day_15
查看>>
Mysql初始化的命令
查看>>
MySQL关键字的些许问题
查看>>
浅谈HTML
查看>>
css基础
查看>>
Servlet进阶和JSP基础
查看>>
servlet中的cookie和session
查看>>
过滤器及JSP九大隐式对象
查看>>
软件(项目)的分层
查看>>
菜单树
查看>>