Acwing 179. 八数码(A*算法)

179. 八数码 - AcWing题库

八数码问题的结论:只有偶数个逆序对时才有解

bool check(string str)//偶数逆序对可解
{
	int cnt=0;
	for(int i=0;i<8;i++)
		for(int j=i;j<8;j++)
			if(str[i]>str[j]) cnt++;
	if(cnt&1) return false;
	return true;	
} 

搜索时估价函数每个数到最终位置的曼哈顿距离之和 

int f(string str)
{
	int sum=0;
	for(int i=0;i<str.length();i++)
	{
		if(str[i]=='x') continue;
		int j=str[i]-'1';
		int x=i/3,y=i%3;
		int a=j/3,b=j%3;
		sum+=abs(x-a)+abs(y-b);
	}
	return sum;
}

完整代码

#include<iostream>
#include<cstring>
#include<map>
#include<queue>
#include<cmath>
#include<algorithm>
using namespace std;
string st,ed;
typedef pair<int,string> PIS;
bool check(string str)//偶数逆序对可解
{
	int cnt=0;
	for(int i=0;i<8;i++)
		for(int j=i;j<8;j++)
			if(str[i]>str[j]) cnt++;
	if(cnt&1) return false;
	return true;	
} 
//估价函数为每个数到最终位置的曼哈顿距离之和 
int f(string str)
{
	int sum=0;
	for(int i=0;i<str.length();i++)
	{
		if(str[i]=='x') continue;
		int j=str[i]-'1';
		int x=i/3,y=i%3;
		int a=j/3,b=j%3;
		sum+=abs(x-a)+abs(y-b);
	}
	return sum;
}
string bfs(string st)
{
	priority_queue<PIS,vector<PIS>,greater<PIS> > heap;
	map<string,int> dist;
	dist[st]=0;
	map<string,pair<char,string> >pre;
	heap.push({f(st),st});
	int dx[]={-1,0,1,0};
	int dy[]={0,1,0,-1};
	string d="urdl";
	while(heap.size())
	{
		PIS t=heap.top();heap.pop();
		string s=t.second;
		if(s==ed) break;
		int x,y;
		for(int i=0;i<9;i++)
			if(s[i]=='x')
			{
				x=i/3,y=i%3;
				break;
			}
		string source=s;
		for(int i=0;i<4;i++)
		{
			int a=x+dx[i],b=y+dy[i];
			if(a<0||a>=3||b<0||b>=3) continue;
			s=source;
			swap(s[3*x+y],s[3*a+b]);
			if(!dist.count(s)||dist[s]>dist[source]+1)
			{
				dist[s]=dist[source]+1;
				pre[s]={d[i],source};
				heap.push({dist[s]+f(s),s});
			}
		}
	}
	string res="";
	while(ed!=st)
	{
		res+=pre[ed].first;
		ed=pre[ed].second;
	}
	reverse(res.begin(),res.end());
	return res;
}
int main()
{
	char c;
	string sq;
	while(cin>>c)
	{
		st+=c;
		if(c!='x') sq+=c;
	}
	ed="12345678x";
	if(!check(sq)) cout<<"unsolvable";
	else cout<<bfs(st);
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

Vic.GoodLuck

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值