博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
HDU1548--A strange lift
阅读量:4519 次
发布时间:2019-06-08

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

A strange lift

Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 8336 Accepted Submission(s): 3160
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 5
3 3 1 2 5
0
Sample Output
3
Recommend
8600

 

BFS过的,也可最短路。

意思很好理解,就是从A出发到B,每一步有up与down的操作,不能少于1,不能大于N。

1 #include
2 #include
3 #include
4 #include
5 #include
6 #include
7 using namespace std; 8 9 int ans[2001];10 bool vis[2001];11 int A,B;12 int n;13 14 struct Node15 {16 int len;17 int k;18 }fpoint[400001];19 20 queue
Q;21 22 int bfs(Node x)23 {24 vis[x.k]=1;25 while(!Q.empty())Q.pop();26 Q.push(x);27 while(!Q.empty())28 {29 Node head=Q.front();Q.pop();30 Node next;31 if(head.k==B)32 return head.len;33         if(head.k+ans[head.k]<=B&&head.k+ans[head.k]>=1)34         { 35             next.k=head.k+ans[head.k];36             next.len=head.len+1;37             if(!vis[next.k])38             {39                 vis[next.k]=1;40                 Q.push(next);41             }42         }43         if(head.k-ans[head.k]>=1&&head.k-ans[head.k]<=B)44         {45             next.k=head.k-ans[head.k];46             next.len=head.len+1;47             if(!vis[next.k])48             {49                 vis[next.k]=1;50                 Q.push(next);51             }52         }53 }54     return -1;55 }56 57 58 int main()59 {60 while(scanf("%d",&n)!=EOF)61 {62 if(!n)break;63 int i;64 memset(vis,0,sizeof(vis));65 scanf("%d%d",&A,&B);66 for(i=1;i<=n;i++)67 {68 scanf("%d",&ans[i]);69 }70 int one=1;71 fpoint[one].len=0;72 fpoint[one].k=A;73 int cou=bfs(fpoint[1]);74         printf("%d\n",cou);75 }76 return 0;77 }
View Code

 

 

 

 

转载于:https://www.cnblogs.com/zafuacm/p/3213413.html

你可能感兴趣的文章
Android Activity接收Service发送的广播
查看>>
[Leetcode] Spiral Matrix | 把一个2D matrix用螺旋方式打印
查看>>
加速和监控国际网络
查看>>
【Flex】读取本地XML,然后XML数据转成JSON数据
查看>>
字符串循环右移-c语言
查看>>
解决从pl/sql查看oracle的number(19)类型数据为科学计数法的有关问题
查看>>
古训《增广贤文》
查看>>
职场的真相——七句话
查看>>
xcode命令行编译时:codesign命令,抛出“User interaction is not allowed.”异常 的处理...
查看>>
[转载]开机出现A disk read error occurred错误
查看>>
STM32 C++编程 002 GPIO类
查看>>
无线冲方案 MCU vs SoC
查看>>
进程装载过程分析(execve系统调用分析)
查看>>
在windows 7中禁用media sense
查看>>
ELK-Elasticsearch安装
查看>>
Android 模拟器(Emulator)访问模拟器所在主机
查看>>
删除字符串中指定子串
查看>>
day40-socket编程
查看>>
SpringBoot里mybatis查询结果为null的列不返回问题的解决方案
查看>>
为什么留不住优秀的员工
查看>>