POJ1077 八数码 BFS
BFS 几天的超时...
A*算法不会,哪天再看去了.
/*
倒搜超时,
改成顺序搜超时
然后把记录路径改成只记录当前点的操作,把上次的位置记录下AC..不完整的人生啊
*/ #include <iostream>
#include <queue>
#include <vector>
#include <iterator>
#include <string>
using namespace std; const int MAXX_SIZE = ; int fac[] = {,,,,,,,,};
bool used[MAXX_SIZE]; struct Nod
{
string str; //数组
int postion9; //可交换的位置
}nod[MAXX_SIZE]; struct Step
{
int last;
char c; //l0, r1, u2, d3 }step[MAXX_SIZE]; int dir[][] = {,, -,, ,, ,- }; char st[] = {'d', 'u', 'r', 'l'}; int Kt(string str, int n)
{
int i, j, cnt, sum=;
for (i=; i<n; i++)
{
cnt = ;
for (j=i+; j<n; j++)
if (str[i] > str[j])
cnt++;
sum += cnt * fac[n--i];
}
return sum;
} string InverKt(int sum, int n)
{
int i, j, t;
bool Int[];
string str;
for (i=; i<n; i++)
{
t = sum / fac[n--i];
for (j=; j<n; j++)
{
if (Int[j])
{
if (t == )
break;
t--;
}
}
str += j++'';
Int[j] = false;
sum %= fac[n--i];
}
//str += '\0';
return str;
} void bfs(string str, int pos)
{
queue<int>que; //string str = "123456789";
int i, m, n = Kt(str, );
int ii, jj, ti, tj, t; nod[n].str = str;
nod[n].postion9 = pos;
step[n].last = -;
que.push(n);
used[n] = true; while (!que.empty())
{
n = que.front();
que.pop();
ii = nod[n].postion9 / ;
jj = nod[n].postion9 % ;
for (i=; i<; i++)
{
ti = ii + dir[i][];
tj = jj + dir[i][];
if (ti < || ti > || tj < || tj > )
continue;
t = ti*+tj;
swap(nod[n].str[nod[n].postion9], nod[n].str[t]);
m = Kt(nod[n].str, ); if (!used[m])
{
used[m] = true;
nod[m].str = nod[n].str;
nod[m].postion9 = t;
step[m].last = n;
step[m].c = st[i] ;
//step[m].str = step[n] + st[i]; 超时!
if (m == )
return ;
que.push(m);
}
swap(nod[n].str[nod[n].postion9], nod[n].str[t]);
}
}
} void show(int m)
{
if (step[m].last == -)
return;
show(step[m].last);
cout<<step[m].c;
} int main()
{ int i, n=, m, pos;
char c;
string str;
for (i=; i<n; i++)
{
cin>>c;
if (c == 'x')
{
pos = i;
c = '';
}
str+= c;
}
bfs(str, pos);
// m = Kt(str, n);
if (!used[])
cout<<"unsolvable"<<endl;
else
show();
return ;
}
POJ1077 八数码 BFS的更多相关文章
- hdu-1043(八数码+bfs打表+康托展开)
参考文章:https://www.cnblogs.com/Inkblots/p/4846948.html 康托展开:https://blog.csdn.net/wbin233/article/deta ...
- HDU1043 八数码(BFS + 打表)
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1043 , 康托展开 + BFS + 打表. 经典八数码问题,传说此题不做人生不完整,关于八数码的八境界 ...
- 紫书p199 八数码(BFS,hash)
八数码问题 紫书上的简单搜索 渣渣好久才弄懂 #include<cstdio> #include<cstring> using namespace std; const i ...
- POJ1077 八数码问题
题目:八数码 网址:http://poj.org/problem?id=1077 在一个3×3的网格中,1~8这8个数字和一个"X"恰好不重不漏地分布在这3×3的网格中. 例如: ...
- code1225 八数码Bfs
Bfs搜索 1.把棋盘直接作为状态: #include<iostream> #include<cstring> #include<queue> #include&l ...
- luogu_1379 八数码难题
八数码-->BFS+set #include<iostream> #include<cstdlib> #include<cstdio> #include< ...
- ACM/ICPC 之 BFS-广搜进阶-八数码(经典)(POJ1077+HDU1043)
八数码问题也称为九宫问题.(本想查查历史,结果发现居然没有词条= =,所谓的历史也就不了了之了) 在3×3的棋盘,摆有八个棋子,每个棋子上标有1至8的某一数字,不同棋子上标的数字不相同.棋盘上还有一个 ...
- 由八数码问题引入。对BFS有更深考虑
12号到今天共研究八数码问题poj1077,首先用的是普通BFS,遇到很多问题,开始用一个二级指针作为结构成员,知道了二级指针与二维数值名的不同!http://write.blog.csdn.net/ ...
- BFS(八数码) POJ 1077 || HDOJ 1043 Eight
题目传送门1 2 题意:从无序到有序移动的方案,即最后成1 2 3 4 5 6 7 8 0 分析:八数码经典问题.POJ是一次,HDOJ是多次.因为康托展开还不会,也写不了什么,HDOJ需要从最后的状 ...
随机推荐
- 【eclipse插件开发实战】Eclipse插件开发2——SWT
Eclipse插件开发实战2--SWT 一.SWT简介 SWT(StandardWidget Toolkit) 标准小窗口工具箱,一开源的GUI编程框架,与AWT/Swing有相似的用处,eclips ...
- Python3.6 的字符串内建函数
1.capitalize(self) 将字符串的第一个字符转换为大写 2.casefold(self) 返回将字符串中所有大写字符转换为小写后生成的字符串 3.center(self, width, ...
- Docker 网络模型之 macvlan 详解,图解,实验完整
本文首发于我的公众号 Linux云计算网络(id: cloud_dev),专注于干货分享,号内有 10T 书籍和视频资源,后台回复「1024」即可领取,欢迎大家关注,二维码文末可以扫. 上一篇文章我们 ...
- 两种好用的清除浮动的小技巧(clearfix hack)
方法一:使用内容生成的方式清除浮动 这种方法不能解决margin在垂直边界上的叠加问题,如果不涉及margin的边界叠加问题使用这种方法清除浮动就行了 . /* :after 选择器向选定的元素之后插 ...
- CF939D Love Rescue
题意 给定两个长度为n的由小写字母组成的字符串 每次可以花费1的代价,指定两个字母,把其中一个全部变为另一个 求使两个字符串相同的最小花费 n <= 100000 因为谁变成谁没有关系反正相等就 ...
- ubuntu 14.04 源码编译mysql-5.7.17
环境为 Ubuntu 12.04 64 位的桌面版 编译的mysql 版本为 5.7.18 首先需要安装一下依赖包 sudo apt-get install libncurses5-dev cmake ...
- OFFICE 365 A1 Plus账号注册
OFFICE365 A1 Plus账号注册 Office2019与Office365专业增强版之间的区别: Office2019是一次性购买,不会在购买后接收功能更新,但会根据需要接收质量和安全修补程 ...
- 黑马函数式接口学习 Stream流 函数式接口 Lambda表达式 方法引用
- ES5数组的方法
var ary = [1,23,4]; function isArray(o){ return Object.prototype.toString.call(o)=='[object Array]'; ...
- [coci2015-2016 coii] Palinilap【字符串 哈希】
传送门:http://www.hsin.hr/coci/archive/2015_2016/ 进去之后点底下的那个.顺带说一句,题目既不是一个英文单词,也不是克罗地亚单词,估计只是从回文串的英文单词p ...