[关闭]
@xunuo 2017-04-16T11:01:37.000000Z 字数 2029 阅读 1062

HDU 1548 A strange lift


Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)

BFS


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

题意:

坐电梯:每一层都可以上或者下k层,问你能不能从第a层到第b层,如果能,最少要坐几次电梯?如果不能,输出-1;

解题思路:

bfs把上楼和下楼都走一遍,如果能到,就输出最先到达的步数,如果不能到,输出-1;

完整代码:

  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. int vis[210];
  4. int a[210];
  5. int n,ans;
  6. struct node
  7. {
  8. int x;
  9. int num;
  10. };
  11. int bfs(int st,int en)
  12. {
  13. queue<node>q;
  14. node now,next;
  15. now.x=st;
  16. ans=-1;
  17. now.num=0;
  18. q.push(now);
  19. vis[now.x]=1;
  20. while(!q.empty())
  21. {
  22. now=q.front();
  23. q.pop();
  24. if(now.x==en)
  25. {
  26. ans=now.num;
  27. break;
  28. }
  29. next.x=now.x+a[now.x];
  30. if(next.x>=1&&next.x<=n&&vis[next.x]==0)
  31. {
  32. vis[next.x]=1;
  33. next.num=now.num+1;
  34. q.push(next);
  35. }
  36. next.x=now.x-a[now.x];
  37. if(next.x>=1&&next.x<=n&&vis[next.x]==0)
  38. {
  39. vis[next.x]=1;
  40. next.num=now.num+1;
  41. q.push(next);
  42. }
  43. }
  44. return ans;
  45. }
  46. int main()
  47. {
  48. while(scanf("%d",&n),n)
  49. {
  50. int st,en;
  51. scanf("%d%d",&st,&en);
  52. memset(vis,0,sizeof(vis));
  53. for(int i=1;i<=n;i++)
  54. scanf("%d",&a[i]);
  55. printf("%d\n",bfs(st,en));
  56. }
  57. return 0;
  58. }
添加新批注
在作者公开此批注前,只有你和作者可见。
回复批注