845. 八数码
Posted 幽殇默
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了845. 八数码相关的知识,希望对你有一定的参考价值。
https://www.acwing.com/problem/content/description/847/
#include<cstdio>
#include<iostream>
#include<string>
#include<unordered_map>
#include<queue>
using namespace std;
int dx[4]={-1,0,1,0};
int dy[4]={0,1,0,-1};
int bfs(string state)
{
queue<string> q; q.push(state);
unordered_map<string,int> d; d[state]=0;
string end="12345678x";
while(!q.empty())
{
string t=q.front(); q.pop();
if(t==end)
{
return d[t];
}
int distance=d[t];
int k=t.find('x');//找到x的位置
int x=k/3,y=k%3;
for(int i=0;i<4;i++)
{
int a=x+dx[i];
int b=y+dy[i];
if(a>=0&&a<3&&b>=0&&b<3)
{
swap(t[a*3+b],t[k]);
if(!d.count(t)) d[t]=distance+1,q.push(t);
//找t的个数,如果为0说明没有进去过
swap(t[a*3+b],t[k]);//恢复状态
}
}
}
return -1;
}
int main(void)
{
string a,state;
for(int i=0;i<9;i++) cin>>a,state+=a;
cout<<bfs(state)<<endl;
return 0;
}
以上是关于845. 八数码的主要内容,如果未能解决你的问题,请参考以下文章
[A*] aw179. 八数码(A*+bfs最小步数模型+模板题)