P1135 奇怪的电梯 dfs和bfs双解

这篇博客介绍了如何解决一个涉及电梯操作的数学问题,其中每个楼层都有一个数字指示上下的步数。作者通过深度优先搜索(DFS)和广度优先搜索(BFS)两种算法来寻找从A楼到B楼的最少按键次数。在DFS中,当每层都被访问过但仍无法到达目标时结束搜索,同时进行剪枝优化;而在BFS中,使用队列实现搜索,同样在找到目标楼层时更新最小步数。文章展示了这两种算法的实现细节,并给出了输入输出样例。
摘要由CSDN通过智能技术生成

呵呵,有一天我做了一个梦,梦见了一种很奇怪的电梯。大楼的每一层楼都可以停电梯,而且第i层楼(1≤i≤N)上有一个数字Ki​(0≤Ki​≤N)。电梯只有四个按钮:开,关,上,下。上下的层数等于当前楼层上的那个数字。当然,如果不能满足要求,相应的按钮就会失灵。例如:3,3,1,2,5代表了Ki​(K1​=3,K2​=3,…),从1楼开始。在1楼,按“上”可以到4楼,按“下”是不起作用的,因为没有−2楼。那么,从A楼到B楼至少要按几次按钮呢?

输入格式

共二行。

第一行为3个用空格隔开的正整数,表示N,A,B(1≤N≤200, 1≤A,B≤N)N,A,B(1≤N≤200,1≤A,B≤N)。

第二行为N个用空格隔开的非负整数,表示Ki​。

输出格式

一行,即最少按键次数,若无法到达,则输出-1−1。

输入输出样例

输入 #1

5 1 5
3 3 1 2 5

输出 #1

3

思路:标准的搜索模板,满足条件的情况下继续搜索;要注意如果每层都走过仍没有到达目标层的时候输出-1。

dfs版本:

dfs主要需要确定搜索停止条件,和搜索方向。并适当剪枝。

//#include<graphics.h>
#include <iostream>
//#include<fstream>
#include<ctime>
#include<math.h>
#include<string>
#include<vector>
#include<algorithm>
#include<queue>
#include <iomanip>
#include<string.h>
using namespace std;
int  n, a, b;
int arr[300] = { 0 };//记录每层数字
int used[300] = { 0 };//表示该层是否来过
long long minm = 99999999999999;//初始最小值

void dfs(int dep, int sum) {//该dfs会在每层都走过但仍然没有到目标层的时候结束
	if (dep == b) {
		if (minm > sum)minm = sum;//每次到达目标楼层时取小
		return;
	}
	if (sum > minm) return;//剪枝,当目前步数大于当前最小步数时没必要继续了
	if (dep - arr[dep] >= 1 && used[dep - arr[dep]] == 0)//下一步合法的情况下深搜,向下搜
	{
		used[dep - arr[dep]] = 1;
		dfs(dep - arr[dep], sum + 1);
		used[dep - arr[dep]] = 0;//回溯
	}
	if (dep + arr[dep] <= n && used[dep + arr[dep]] == 0) {//向上搜
		used[dep + arr[dep]] = 1;
		dfs(dep + arr[dep], sum + 1);
		used[dep + arr[dep]] = 0;

	}

}
int main() {
	
	cin >> n >> a >> b;
	for (int j = 1; j <= n; j++) {
		cin >> arr[j];
	}
	dfs(a, 0);
	if (minm == 99999999999999)cout << -1;//如果没有走到目标层,输出-1
	else cout << minm;

}

bfs版本:

//#include<graphics.h>
#include <iostream>
//#include<fstream>
#include<ctime>
#include<math.h>
#include<string>
#include<vector>
#include<algorithm>
#include<queue>
#include <iomanip>
#include<string.h>
using namespace std;
int  n, a, b;
int arr[300] = { 0 };
int used[300] = { 0 };
long long minm = 99999999999999;
struct node {
	int f;//当前楼层
	int n;//当前步数
};
queue<node>q;//用队列实现bfs
void bfs() {
	q.push({ a, 0 });//初始化队列,推入初始楼层信息
	used[a] = 1;
	while (!q.empty()) {//
		node now = q.front();
		q.pop();
		if (now.f == b) {
			if (minm > now.n) {
				minm = now.n;
			}
		}
		int next1 = now.f + arr[now.f], next2 = now.f - arr[now.f];
		if (next1 <= n && used[next1] == 0) {//因为只有两个搜索方向,所以可以这样if写
			//搜索情况多的时候应选用循环,并定义方向数组
			q.push({ next1,now.n + 1 });
			used[next1] = 1;
		}
		if (next2 >= 1 && used[next2] == 0) {
			q.push({ next2,now.n + 1 });
			used[next2] = 1;
		}
	}
}
int main() {
	//int  n,a,b;
	cin >> n >> a >> b;
	for (int j = 1; j <= n; j++) {
		cin >> arr[j];
	}
	bfs();
	if (minm == 99999999999999) cout << -1;//同dfs
	else cout << minm;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值