【hdu 1043】Eight
【题目链接】:http://acm.hdu.edu.cn/showproblem.php?pid=1043
【题意】
会给你很多组数据;
让你输出这组数据到目标状态的具体步骤;
【题解】
从12345678x这个目标状态开始bfs然后获取它能够到达的所有状态;
然后在队列中记录下执行这一步用的是那个操作;
递归输出就好;
map来判定这状态存不存在;
在队列里面存这个状态
就按照所给的存成1维的数组就好;
x用9代替;(用0也可以哦);
模拟八数码的操作就好;
因为是逆序的,所以记录的操作是相反的;
最后递归写输出的时候搞晕了;
又WA了好多次.
【完整代码】
#include <bits/stdc++.h>
using namespace std;
#define lson l,m,rt<<1
#define rson m+1,r,rt<<1|1
#define LL long long
#define rep1(i,a,b) for (int i = a;i <= b;i++)
#define rep2(i,a,b) for (int i = a;i >= b;i--)
#define mp make_pair
#define ps push_back
#define fi first
#define se second
#define rei(x) scanf("%d",&x)
#define rel(x) scanf("%lld",&x)
#define ref(x) scanf("%lf",&x)
typedef pair<int, int> pii;
typedef pair<LL, LL> pll;
const int dx[9] = { 0,1,-1,0,0,-1,-1,1,1 };
const int dy[9] = { 0,0,0,-1,1,-1,1,-1,1 };
const double pi = acos(-1.0);
const int N = 200e4;
const int chushi[10] = { 0,1,2,3,4,5,6,7,8,9 };
struct abc
{
int s[15];
int pos,ope,pre;
};
map<int, int> dic;
abc dl[N];
int ts[15];
string t;
int zt(int s[15])
{
int r = 0;
rep1(i, 1, 9)
r = r * 10 + s[i];
return r;
}
void bfs()
{
abc temp,temp1;
rep1(i, 0, 9) temp.s[i] = chushi[i];
temp.pos = 9;
dic[zt(temp.s)] = 1;
int head = 1, tail = 1;
dl[1] = temp;
while (head <= tail)
{
abc now = dl[head++];
int ss[15];
rep1(i, 1, 9) ss[i] = now.s[i];
int t = now.pos;
//up
if (t > 3)
{
int tt = t - 3;
swap(ss[tt], ss[t]);
int pc = zt(ss);
if (!dic[pc])
{
rep1(i, 1, 9) temp1.s[i] = ss[i];
temp1.pos = tt, temp1.pre = head - 1, temp1.ope = 2;
dl[++tail] = temp1;
dic[pc] = tail;
}
swap(ss[tt], ss[t]);
}
//down
if (t<7)
{
int tt = t + 3;
swap(ss[tt], ss[t]);
int pc = zt(ss);
if (!dic[pc])
{
rep1(i, 1, 9) temp1.s[i] = ss[i];
temp1.pos = tt, temp1.pre = head - 1, temp1.ope = 1;
dic[pc] = tail+1;
dl[++tail] = temp1;
}
swap(ss[tt], ss[t]);
}
//left
if ((t % 3) != 1)
{
int tt = t - 1;
swap(ss[tt], ss[t]);
int pc = zt(ss);
if (!dic[pc])
{
rep1(i, 1, 9) temp1.s[i] = ss[i];
temp1.pos = tt, temp1.pre = head - 1, temp1.ope = 4;
dic[pc] = tail+1;
dl[++tail] = temp1;
}
swap(ss[tt], ss[t]);
}
//right
if ((t % 3) != 0)
{
int tt = t + 1;
swap(ss[tt], ss[t]);
int pc = zt(ss);
if (!dic[pc])
{
rep1(i, 1, 9) temp1.s[i] = ss[i];
temp1.pos = tt, temp1.pre = head - 1, temp1.ope = 3;
dic[pc] = tail+1;
dl[++tail] = temp1;
}
swap(ss[tt], ss[t]);
}
}
}
void pri(int now){
if (now == 1) return;
int ju = dl[now].ope;
if (ju == 1) printf("u");
if (ju == 2) printf("d");
if (ju == 3) printf("l");
if (ju == 4) printf("r");
pri(dl[now].pre);
}
int main()
{
//freopen("F:\\rush.txt", "r", stdin);
bfs();
while (getline(cin,t)){
int num = 0;
int len = t.size();
rep1(i,0,len-1)
{
if (t[i]=='x') t[i] = '9';
if (t[i]>='0' && t[i]<='9') ts[++num] = t[i]-'0';
if (num==9) break;
}
int pc=dic[zt(ts)];
if (pc){
pri(pc);
puts("");
}
else
puts("unsolvable");
}
//printf("\n%.2lf sec \n", (double)clock() / CLOCKS_PER_SEC);
return 0;
}
【hdu 1043】Eight的更多相关文章
- 【HDU - 1043】Eight(反向bfs+康托展开)
Eight Descriptions: 简单介绍一下八数码问题:在一个3×3的九宫格上,填有1~8八个数字,空余一个位置,例如下图: 1 2 3 4 5 6 7 8 在上图中,由于右下角位置是空的 ...
- 【数位dp】【HDU 3555】【HDU 2089】数位DP入门题
[HDU 3555]原题直通车: 代码: // 31MS 900K 909 B G++ #include<iostream> #include<cstdio> #includ ...
- 【HDU 5647】DZY Loves Connecting(树DP)
pid=5647">[HDU 5647]DZY Loves Connecting(树DP) DZY Loves Connecting Time Limit: 4000/2000 MS ...
- -【线性基】【BZOJ 2460】【BZOJ 2115】【HDU 3949】
[把三道我做过的线性基题目放在一起总结一下,代码都挺简单,主要就是贪心思想和异或的高斯消元] [然后把网上的讲解归纳一下] 1.线性基: 若干数的线性基是一组数a1,a2,a3...an,其中ax的最 ...
- 【HDU 2196】 Computer(树的直径)
[HDU 2196] Computer(树的直径) 题链http://acm.hdu.edu.cn/showproblem.php?pid=2196 这题可以用树形DP解决,自然也可以用最直观的方法解 ...
- 【HDU 2196】 Computer (树形DP)
[HDU 2196] Computer 题链http://acm.hdu.edu.cn/showproblem.php?pid=2196 刘汝佳<算法竞赛入门经典>P282页留下了这个问题 ...
- 【HDU 5145】 NPY and girls(组合+莫队)
pid=5145">[HDU 5145] NPY and girls(组合+莫队) NPY and girls Time Limit: 8000/4000 MS (Java/Other ...
- 【HDU 3068】 最长回文
[题目链接] http://acm.hdu.edu.cn/showproblem.php?pid=3068 [算法] Manacher算法求最长回文子串 [代码] #include<bits/s ...
- 【HDU 4699】 Editor
[题目链接] http://acm.hdu.edu.cn/showproblem.php?pid=4699 [算法] 维护两个栈,一个栈放光标之前的数,另外一个放光标之后的数 在维护栈的同时求最大前缀 ...
随机推荐
- unable to unroll loop 报错
unable to unroll loop, loop does not appear to terminate in a timely manner (1024 iterations) 原本代码 f ...
- 流程图软件draw.io
工作中经常需要梳理一些流程图,时序图.以前用微软Visio绘制流程图(当然不是正版Visio).后来为了响应国家号召,改用processon(proceson.com)进行绘制流程图.Processo ...
- VUE学习之计算属性computed
计算属性:computed 先看一下官网的说法 模板内的表达式非常便利,但是设计它们的初衷是用于简单运算的.在模板中放入太多的逻辑会让模板过重且难以维护.例如: <div id="ex ...
- golang——log包学习
log包实现了简单的日志服务. 1.func New(out io.Writer, prefix string, flag int) *Logger New创建一个Logger. 参数out设置日志信 ...
- Linux学习笔记之Linux相关知识
[想成为某一方面的大神,没有捷径可走,只能不断的记录.练习.总结.coding……] notes:主要从网上摘录了一些关于Linux的历史以及一些相关内容,以便对Linux系统有一定的了解.这不但可以 ...
- HDU 4691 后缀数组+RMQ
思路: 求一发后缀数组,求个LCP 就好了 注意数字有可能不只一位 (样例2) //By SiriusRen #include <bits/stdc++.h> using namespac ...
- VB.NET 小程序 4
Public Class Form1 Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click ...
- C#知识点-GDI绘图
一.开发环境 编译器:VS2013 .Net版本:4.5 二.开发过程 1.画一条直线 private void btnDrawLine_Click(object sender, EventArgs ...
- WebForm vs MVC
What is ASP.NET? ASP.NET is a Microsoft’s Web application framework built on Common language runtime ...
- P1165 日志分析
题目描述 M 海运公司最近要对旗下仓库的货物进出情况进行统计.目前他们所拥有的唯一记录就是一个记录集装箱进出情况的日志.该日志记录了两类操作:第一类操作为集装箱入库操作,以及该次入库的集装箱重量:第二 ...