HDU1548 A strange lift

HDU1548 A strange lift

题意:
一个电梯,每一层都有up或者down,和一个ki代表上下的层数,给定起始和终止层数,求最少按up或者down的次数。

题解:
以层为顶点,所有层分别up或down到各自到达层为边(有向边),权重为1,建图。然后运用dijkstra求最短路即可。

AC代码:

#include <bits/stdc++.h>

using namespace std;
typedef long long LL;
typedef pair <int,int> P;
const int maxn = 200+10;
int N;
int A,B;
int a[maxn];
bool vis[maxn];

int bfs()
{
    queue <P> Q;
    Q.push(P(A,0));
    memset(vis,false,maxn);
    vis[A] = true;

    while(!Q.empty())
    {
        P t = Q.front();
        Q.pop();
        if(t.first == B)  return t.second;
        vis[t.first] = true;
        int up = t.first + a[t.first];
        int down = t.first - a[t.first];
        if(up <= N && !vis[up])   Q.push(P(up,t.second+1));
        if(down > 0&& !vis[down]) Q.push(P(down,t.second+1));
    }
   return -1;
}

int main()
{
  while(scanf("%d",&N) && N)
  {
      scanf("%d%d",&A,&B);
      for(int i = 1; i <= N; i++)
        scanf("%d",&a[i]);
      printf("%d\n",bfs());
  }
  return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值