HDU 3900 Unblock Me
题目:Unblock Me
链接:Here
题意:一个游戏,看图就基本知道题意了,特殊的是:1. 方块长度为3或2,宽度固定是1。2. 地图大小固定是6*6,从0开始。 3. 出口固定在(6,2)。4. 每一步只能移动一个方块,但可以移动多个单位。5. 必定有解。求红色方块从出口离开的最小步骤数。
思路:
刚开始老老实实的用IDA*做,毫不犹豫的超时,样例都跑不动,剪枝也剪不了,大概知道要状态压缩,具体点就实在想不出来了,百度的题解,感觉刷新了我对状压的认识,用3位二进制表示一个方块的可变信息,然后组成一个LL型数。我写的IDA*,当时想加一个判断当前局面是否遇到过的剪枝,发现要想存状态并且快速找到很困难,现在如果用一个LL型数就可以表示局面,那就简单多了,set就可以解决。
可变信息是指在一个局面开始后会发生变化的信息,相对的不可变信息就比如某个竖立方块的列(在游戏过程中不会发生改变)、长度,因此用二维数组表示状态有很大的冗余,其实在游戏过程中竖立方块会发生变化的就只有行,而地图大小6,所以用3位二进制可以完整地保存,题目最多36/2=18个方块,所以一个LL型可以存下所有方块的信息。
接下来通过简单的位运算可以分离信息,剩下的就是bfs了,难点就在状态压缩,想到以后位置处理就简单了。
AC代码:
#include<stdio.h>
#include<string.h>
#include<stdlib.h>
#include<math.h>
#include<set>
#include<map>
#include<list>
#include<stack>
#include<queue>
#include<vector>
#include<string>
#include<iostream>
#include<algorithm>
using namespace std;
#define lson rt<<1
#define rson rt<<1|1
#define N 20020
#define M 100010
#define Mod 1000000007
#define LL long long
#define INF 0x7fffffff
#define FOR(i,f_start,f_end) for(int i=f_start;i<=f_end;i++)
#define For(i,f_start,f_end) for(int i=f_start;i<f_end;i++)
#define REP(i,f_end,f_start) for(int i=f_end;i>=f_start;i--)
#define Rep(i,f_end,f_start) for(int i=f_end;i>f_start;i--)
#define MT(x,i) memset(x,i,sizeof(x))
#define gcd(x,y) __gcd(x,y)
const double PI = acos(-); struct Node
{
bool type; //竖的 1 ,横的 0
int pos; //竖的记录行,横的记录列
int len; //长度
}v[]; int cal(LL s,int pos)
{
return (int)( ( s & (7LL << (pos * )) ) >> (pos * ) );
} int n,red; bool ok(LL s)
{
int rl = cal(s,red), rr = rl + v[red].len;
for(int i=;i<n;i++)
{
if(v[i].type) continue;
if(v[i].pos <= rr) continue;
int il = cal(s,i), ir = il + v[i].len;
if(ir < || il > ) continue;
return false;
}
return true;
} bool check(LL s,int pre)
{
int pl = cal(s,pre), pr = pl + v[pre].len;
for(int i=;i<n;i++)
{
if(i == pre) continue;
if(v[i].type == v[pre].type)
{
if(v[i].pos!=v[pre].pos) continue;
int il = cal(s,i), ir = il + v[i].len;
if(ir<pl || pr<il) continue;
}
else
{
int il = cal(s,i), ir = il + v[i].len;
if( pr < v[i].pos || pl > v[i].pos || il > v[pre].pos || ir < v[pre].pos) continue;
}
return false;
}
return true;
} void mov(LL &s,int pos,int x)
{
s &= ( ~( 7LL << (*pos) ) );
s |= ( (LL)x << (*pos) );
} set<LL> mp;
queue<pair<LL,int> > q;
int bfs(LL s)
{
if(ok(s)) return ;
while(q.size()) q.pop();
mp.clear();
q.push(make_pair(s,) );
while(q.size())
{
s = q.front().first;
int d = q.front().second + ;
q.pop();
for(int i=;i<n;i++)
{
int p = cal(s,i);
for(int j=;p-j>=;j++)
{
LL u = s;
mov(u,i,p-j);
if(check(u,i)==false) break;
if(mp.find(u)!=mp.end()) continue;
if(ok(u)) return d+;
mp.insert(u);
q.push(make_pair(u,d));
}
for(int j=;p+v[i].len+j<=;j++)
{
LL u = s;
mov(u,i,p+j);
if(check(u,i) == false) break;
if(mp.find(u)!=mp.end()) continue;
if(ok(u)) return d+;
mp.insert(u);
q.push(make_pair(u,d));
}
}
}
return -;
} int main()
{
while(~scanf("%d",&n))
{
LL s = ;
int x,y,x1,y1;
For(i,,n){
scanf("%*d%d%d%d%d",&x,&y,&x1,&y1);
if(x==x1){ // su
v[i].type = ;
v[i].pos = x;
v[i].len = y1-y;
s |= ( (LL)y << (i*) );
}
else
{
v[i].type = ;
v[i].pos = y;
v[i].len = x1-x;
s |= ( (LL)x << (i*) );
}
}
scanf("%d",&red);
printf("%d\n",bfs(s));
}
return ;
}
HDU 3900 Unblock Me的更多相关文章
- HDU 5643 King's Game 打表
King's Game 题目连接: http://acm.hdu.edu.cn/showproblem.php?pid=5643 Description In order to remember hi ...
- HDOJ 2111. Saving HDU 贪心 结构体排序
Saving HDU Time Limit: 3000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others) Total ...
- 【HDU 3037】Saving Beans Lucas定理模板
http://acm.hdu.edu.cn/showproblem.php?pid=3037 Lucas定理模板. 现在才写,noip滚粗前兆QAQ #include<cstdio> #i ...
- hdu 4859 海岸线 Bestcoder Round 1
http://acm.hdu.edu.cn/showproblem.php?pid=4859 题目大意: 在一个矩形周围都是海,这个矩形中有陆地,深海和浅海.浅海是可以填成陆地的. 求最多有多少条方格 ...
- HDU 4569 Special equations(取模)
Special equations Time Limit:1000MS Memory Limit:32768KB 64bit IO Format:%I64d & %I64u S ...
- HDU 4006The kth great number(K大数 +小顶堆)
The kth great number Time Limit:1000MS Memory Limit:65768KB 64bit IO Format:%I64d & %I64 ...
- HDU 1796How many integers can you find(容斥原理)
How many integers can you find Time Limit:5000MS Memory Limit:32768KB 64bit IO Format:%I64d ...
- hdu 4481 Time travel(高斯求期望)(转)
(转)http://blog.csdn.net/u013081425/article/details/39240021 http://acm.hdu.edu.cn/showproblem.php?pi ...
- HDU 3791二叉搜索树解题(解题报告)
1.题目地址: http://acm.hdu.edu.cn/showproblem.php?pid=3791 2.参考解题 http://blog.csdn.net/u013447865/articl ...
随机推荐
- html文本格式
- About Swift
Swift is a new programming language for iOS and OS X apps that builds on the best of C and Objective ...
- 给定一个正整数n,返回从1到n构成的所有的BST
public class C3 { public static void main(String[] args) { ArrayList<TreeNode> res = generateT ...
- 关于reduce的理解
什么是reduce reduce这个词字面上来讲,大多称作“归约”,但这个词太专业了,以至于第一眼看不出来意思.我更倾向于解释为“塌缩”,这样就形象多了.对一个n维的情况进行reduce,就是将执行操 ...
- fastText文本分类算法
1.概述 FastText 文本分类算法是有Facebook AI Research 提出的一种简单的模型.实验表明一般情况下,FastText 算法能获得和深度模型相同的精度,但是计算时间却要远远小 ...
- HTTP请求行、请求头、请求体详解
HTTP 请求头各参数具体含义 Header 解释 示例Accept 指定客户端能够接收的内容类型 Accept: text/plain, text/htmlAccept-Charset 浏览器可以接 ...
- PHP消息队列的实现方式与详解,值得一看
队列原理: 也是解耦的原理:业务系统和队列处理系统没有关系 一个写(业务系统),一个读(队列管理系统). 写的只管往队列里写,别的不用操心,读的能不能读完和写的也没有关系 同样,读的只管从队列里往外读 ...
- 彻底关掉MyEclipse的自动校验,特别是对js文件的校验!!
百度搜出来的一大堆方法都没有用,因为他们都是一样的,让你关掉校验:Window -->Preferences -->MyEclipse -->单击Validation. 但是还是没用 ...
- 在Java中,将ExecutorService转为守护程序
问题描述 我正在Java 1.6中使用一个ExecutoreService,简单地开始 ExecutorService pool = Executors.newFixedThreadPool(THRE ...
- git创建新分支
1.创建本地分支 git branch 分支名,例如:git branch 2.0.1.20120806 注:2.0.1.20120806是分支名称,可以随便定义. 2.切换本地分支 git ch ...