bfs附注释——第八届蓝桥杯省赛C++A组跳蚱蜢

标题:跳蚱蜢

如图 p1.png 所示:

在这里插入图片描述

有9只盘子,排成1个圆圈。
其中8只盘子内装着8只蚱蜢,有一个是空盘。
我们把这些蚱蜢顺时针编号为 1~8

每只蚱蜢都可以跳到相邻的空盘中,
也可以再用点力,越过一个相邻的蚱蜢跳到空盘中。

请你计算一下,如果要使得蚱蜢们的队形改为按照逆时针排列,
并且保持空盘的位置不变(也就是1-8换位,2-7换位,…),至少要经过多少次跳跃?

注意:要求提交的是一个整数,请不要填写任何多余内容或说明文字。

答案:20

代码参考了蓝桥学苑老师的思路

#include<iostream>
#include<algorithm>
#include<cstring>
#include<string>
#include<set>
#include<map>
#include<queue>
#include<stack>
#include<vector>
#include<stdlib.h>
#include<cmath>
#include<stdio.h>
#include<windows.h> 
using namespace std;

class AAni{
public:
	int sp;  //空格的位置
	int level; //第几步
	char* pos;  //因为要用strcpy函数,所以使用char*,char*不能直接用等号
	AAni(int s, int l, char* p){
		pos = (char*)malloc(9);  //使用strcpy函数之前要给dest字符数组先分配空间,否则会发生溢出错误
		sp = s;	
		level = l;
		strcpy(pos, p);
	}	
};

class cmp{  //给set设置自定义排序
public:
	bool operator()(const char *a, const char *b)const{  //要加const否则出错,原因还不清楚
		return strcmp(a, b) < 0;
	}
};

int d[4] = {1, 2, -1, -2};  //可以跳到空格

void bfs(){
	queue<AAni> q;
	set<char*, cmp> s; //记录是否有重复序列
	int i;
	char des[] = {"012345678"};
	//AAni a(0, 0, des);
	q.push(AAni(0, 0, des));  //可以不用先创建对象直接在push里初始化
	s.insert(des);
	while(!q.empty()){
		AAni top = q.front();
		q.pop();
		if(strcmp(top.pos, "087654321") == 0){ //结束条件
			cout << top.level;
			break;
		}		
		
		for(i = 0; i < 4; i++){
			int tx = (top.sp + d[i] + 9) % 9; //tx为空格的位置     			
			char* st = (char*)malloc(9); //使用strcpy函数之前要给dest字符数组先分配空间,否则会发生溢出错误
			
			strcpy(st, top.pos);
			st[top.sp] = st[tx]; //原来空格的地方跳上蚱蜢
			st[tx] = '0';	//原来有蚱蜢的地方变成空格		
			if(!s.count(st)){  //是否出现重复序列,如果没有进行下面操作
				s.insert(st);
				AAni bb(tx, top.level + 1, st);
				q.push(bb);					
			}										
		} 		
	}
}

int main()
{
	bfs();
	return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值