HDU1548——A strange lift(最短路径:dijskstra算法)

A strange lift

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

题目大意:

    从前有一栋楼,楼里面有一座电梯,电梯非常奇葩。

    一栋楼有N层(1-N),楼层i的电梯可以去i-k[i]和i+k[i]层,(k数组题目给定)(即按了一次按钮)

    求从A层到B层最少的按按钮次数。

结题思路:

    BFS可解,做过类似的题,所以这里使用dijskstra算法。

    最短路径dijskstra算法可解,begin为i,end为i+k[i]&&i-k[i],边的权值为1。求从A到B的最短路径就是答案。(注意为有向图)

Code:

 1 #include<stdio.h>
 2 #include<limits.h>
 3 #include<iostream>
 4 #include<string.h>
 5 #define MAXN 200
 6 using namespace std;
 7 int edge[MAXN+10][MAXN+10];
 8 int dis[MAXN+10];
 9 bool vis[MAXN+10];
10 int T,S,D,N,k;
11 void dijskstra(int begin)
12 {
13     memset(vis,0,sizeof(vis));
14     for (int i=1; i<=T; i++)
15         dis[i]=INT_MAX;
16     dis[begin]=0;
17     for (int t=1; t<=T; t++)
18     {
19         vis[begin]=1;
20         for (int i=1; i<=T; i++)
21             if (!vis[i]&&edge[begin][i]!=INT_MAX&&dis[begin]+edge[begin][i]<dis[i])
22                 dis[i]=dis[begin]+edge[begin][i];
23         int min=INT_MAX;
24         for (int j=1; j<=T; j++)
25             if (!vis[j]&&min>dis[j])
26             {
27                 min=dis[j];
28                 begin=j;
29             }
30     }
31 }
32 int main()
33 {
34     int begin,end;
35     while (cin>>T)
36     {
37         if (T==0) break;
38         for (int i=1;i<=MAXN;i++)
39             for (int j=1;j<=MAXN;j++)
40                 edge[i][j]=INT_MAX;
41         scanf("%d %d",&begin,&end);
42         int t;
43         for (int i=1;i<=T;i++)
44         {
45             scanf("%d",&t); //注意是有向图!一开始因为这个WA了好几次。
46             if (i+t<=T) edge[i][i+t]=1;
47             if (i-t>=1) edge[i][i-t]=1;
48         }
49         dijskstra(begin);
50         if (dis[end]!=INT_MAX) printf("%d\n",dis[end]);
51         else printf("-1\n");
52     }
53     return 0;
54 }

HDU1548——A strange lift(最短路径:dijskstra算法)

时间: 2024-08-29 20:18:23

HDU1548——A strange lift(最短路径:dijskstra算法)的相关文章

hdu1548 A strange lift(bfs 或Dijkstra最短路径)

1 #include<iostream> 2 #include<cstdio> 3 #include<algorithm> 4 #include<cstring> 5 #define M 205 6 #define INF 0x3f3f3f3f 7 using namespace std; 8 9 int map[M][M]; 10 int d[M], vis[M]; 11 int n; 12 int b, e; 13 14 void Dijkstra(){

hdu1548——A strange lift

A strange lift Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 12230    Accepted Submission(s): 4656 Problem Description There is a strange lift.The lift can stop can at every floor as you want

HDU1548:A strange lift

A strange lift Time Limit : 2000/1000ms (Java/Other)   Memory Limit : 65536/32768K (Java/Other) Total Submission(s) : 64   Accepted Submission(s) : 29 Font: Times New Roman | Verdana | Georgia Font Size: ← → Problem Description There is a strange lif

hdu1548 A strange lift (简单bfs)

题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1548 A strange lift Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 15974    Accepted Submission(s): 5973 Problem Description There is a strange l

hdu 1548 A strange lift Dijkstra+SPFA算法AC

A strange lift Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 13777    Accepted Submission(s): 5254 Problem Description There is a strange lift.The lift can stop can at every floor as you want

hdu1548 A strange lift(bfs)

A B C D E F G C - A strange lift Crawling in process... Crawling failed Time Limit:1000MS     Memory Limit:32768KB     64bit IO Format:%I64d & %I64u Submit Status Practice HDU 1548 Appoint description: System Crawler (2016-05-23) Description There is

HDU1548 A strange lift BFS 简单题

一个电梯有n层,每一层有一个数k[i],和2个按钮,UP和DOWN,表示从这一层可以到达i+k[i] 或i-k[i] . 给出a,b,问从a到b 最少需要按多少下按钮. 直接bfs. 1 #include<cstdio> 2 #include<queue> 3 #include<cstring> 4 using namespace std; 5 const int maxn=210; 6 int n,a,b; 7 int k[maxn]; 8 bool vis[maxn

hdu1584 A strange lift (电梯最短路径问题)

A strange lift Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 15570    Accepted Submission(s): 5832 Problem Description There is a strange lift.The lift can stop can at every floor as you want

HDU1548:A strange lift(Dijkstra或BFS)

题目链接 http://acm.hdu.edu.cn/showproblem.php?pid=1548 题意:电梯每层有一个数,例如第n层有个数k, 那么这一层只能上k层或下k层,但是不能低于一层或高于n层, 给定起点与终点,要求出最少要按几次键 我的思路:这题可以用bfs或者用最短路(dijsktra) bfs AC代码 #include<cstdio>#include<iostream>#include<cstring>#include<queue>us