BFS模板及其应用

BFS模板

void BFS(int s){
    queue<int> q;
    q.push(s);
    while(!q.empty()){
        //取出队首元素top 
        //访问队首元素top
        //将队首元素入队
        //将top的下一层结点中未曾入队的结点全部入队,并设置为已入队 
    }

BFS实例

玛雅人的密码

题目描述

玛雅人有一种密码,如果字符串中出现连续的2012四个数字就能解开密码。给一个长度为N的字符串,(2=<N<=13)该字符串中只含有0,1,2三种数字,问这个字符串要移位几次才能解开密码,每次只能移动相邻的两个数字。例如02120经过一次移位,可以得到20120,01220,02210,02102,其中20120符合要求,因此输出为1.如果无论移位多少次都解不开密码,输出-1。

输入描述:输入包含多组测试数据,每组测试数据由两行组成。 第一行为一个整数N,代表字符串的长度(2<=N<=13)。 第二行为一个仅由0、1、2组成的,长度为N的字符串。

输出描述:对于每组测试数据,若可以解出密码,输出最少的移位次数;否则输出-1。

示例1:

输入:

5
02120

输出:

1

题目解析代码,典型的bfs,细节上利用map来操作

#include<iostream>
#include<queue>
#include<vector>
#include<map>
using namespace std;
bool judge(string s){
	if(s.length()<4){
		return false;
	}
	for(int i=0;i<=s.length()-4;i++){
		if(s.at(i)=='2' && s.at(i+1)=='0' && s.at(i+2)=='1'
		&& s.at(i+3)=='2'){
			return true;
		}
	}
	return false;
}
int main(){
	int N;
	cin>>N;
	string s;
	cin>>s;
	queue<string> q;
	q.push(s);
	int result=0;
	bool suc=false;
	int index=0;
	map<string,int> msi;
	msi.insert(make_pair(s,0));
	while(!q.empty()){
		string sout=q.front();
		if(judge(sout)){
			suc=true;
			result=msi[sout];
			break;
		}
		q.pop();
		for(int i=0;i<sout.length()-1;i++){
			string temp=sout;
			char c=temp.at(i);
			temp.at(i)=temp.at(i+1);
			temp.at(i+1)=c;
			if(msi.find(temp)==msi.end()){	//map中没有出现该元素则插入进去 
				msi.insert(make_pair(temp,msi[sout]+1));
				q.push(temp);
			}
		}
	}
	if(suc){
		cout<<result;
	}else{
		cout<<-1;
	}
	return 0;
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值