HDU1548--A strange lift

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<cstdio>
 2 #include<iostream>
 3 #include<cstring>
 4 #include<cmath>
 5 #include<queue>
 6 #include<algorithm>
 7 using namespace std;
 8 
 9 int ans[2001];
10 bool vis[2001];
11 int A,B;
12 int n;
13 
14 struct Node
15 {
16     int len;
17     int k;
18 }fpoint[400001];
19 
20 queue<Node>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
",cou);
75     }
76     return 0;
77 }
View Code
原文地址:https://www.cnblogs.com/zafuacm/p/3213413.html