UVA - 10384 The Wall Pusher(推门游戏)(IDA*)
题意:从起点出发,可向东南西北4个方向走,如果前面没有墙则可走;如果前面只有一堵墙,则可将墙向前推一格,其余情况不可推动,且不能推动游戏区域边界上的墙。问走出迷宫的最少步数,输出任意一个移动序列。
分析:
1、最少步数--IDA*。
2、注意,若此墙可推动,必须改变当前格子,和沿当前格子向前一步的格子的墙的标记。
3、若沿当前格子向前两步的格子存在,则这个格子的墙的标记也要改变。不存在的情况是:把墙推向了边界。
4、因为每个格子的值是是1(如果正方形以西有一个墙),2(北),4(东)和8(南)的总和,所以通过与1,2,4,8 & 分别来判断西,北,东,南四个方向是否有墙。
5、可以通过当前步数与当前格子和最近边界的垂直距离的和是否大于maxn来剪枝。
6、注意起点要标记成已走过。
#pragma comment(linker, "/STACK:102400000, 102400000")
#include<cstdio>
#include<cstring>
#include<cstdlib>
#include<cctype>
#include<cmath>
#include<iostream>
#include<sstream>
#include<iterator>
#include<algorithm>
#include<string>
#include<vector>
#include<set>
#include<map>
#include<stack>
#include<deque>
#include<queue>
#include<list>
#define Min(a, b) ((a < b) ? a : b)
#define Max(a, b) ((a < b) ? b : a)
typedef long long ll;
typedef unsigned long long llu;
const int INT_INF = 0x3f3f3f3f;
const int INT_M_INF = 0x7f7f7f7f;
const ll LL_INF = 0x3f3f3f3f3f3f3f3f;
const ll LL_M_INF = 0x7f7f7f7f7f7f7f7f;
const int dr[] = {0, -1, 0, 1, -1, -1, 1, 1};//西北东南
const int dc[] = {-1, 0, 1, 0, -1, 1, -1, 1};
const int MOD = 1e9 + 7;
const double pi = acos(-1.0);
const double eps = 1e-15;
const int MAXN = 50 + 10;
const int MAXT = 10000 + 10;
using namespace std;
int pic[10][10];
int vis[10][10];
int ans[30];
int maxn;
const string s = "WNES";
int dir[] = {1, 2, 4, 8};
int solve(int x, int y){
if(x == 1 && !(pic[x][y] & 2)) return 1;//此刻位于迷宫最北面,且当前格子北面没有墙
if(x == 4 && !(pic[x][y] & 8)) return 3;//东
if(y == 1 && !(pic[x][y] & 1)) return 0;//北
if(y == 6 && !(pic[x][y] & 4)) return 2;//南
return -1;
}
bool judge(int x, int y){
return x >= 1 && x <= 4 && y >= 1 && y <= 6;
}
bool dfs(int x, int y, int cur){
if(cur >= maxn) return false;
int tmp = solve(x, y);
if(tmp != -1){
ans[cur] = tmp;
return true;
}
for(int i = 0; i < 4; ++i){
int tx = x + dr[i];
int ty = y + dc[i];
if(judge(tx, ty) && !vis[tx][ty]){
if(!(pic[x][y] & dir[i])){//向pic[tx][ty]方向走,无墙
vis[tx][ty] = 1;
ans[cur] = i;
if(dfs(tx, ty, cur + 1)) return true;
vis[tx][ty] = 0;
}
else if(!(pic[tx][ty] & dir[i])){//向pic[tx][ty]方向走,有墙但可推
vis[tx][ty] = 1;
pic[tx][ty] += dir[i];//墙推动导致格子对墙的标记改变
pic[x][y] -= dir[i];
if(judge(tx + dr[i], ty + dc[i])){
pic[tx + dr[i]][ty + dc[i]] += dir[(i + 2) % 4];//注意对于该格子加反方向的墙,但是该格子可能不存在,比如把墙推向了边界
}
ans[cur] = i;
if(dfs(tx, ty, cur + 1)) return true;
if(judge(tx + dr[i], ty + dc[i])){
pic[tx + dr[i]][ty + dc[i]] -= dir[(i + 2) % 4];
}
pic[x][y] += dir[i];
pic[tx][ty] -= dir[i];
vis[tx][ty] = 0;
}
}
}
return false;
}
int main(){
int sx, sy;
while(scanf("%d%d", &sx, &sy) == 2){
if(!sx && !sy) return 0;
memset(ans, 0, sizeof ans);
for(int i = 1; i <= 4; ++i){
for(int j = 1; j <= 6; ++j){
scanf("%d", &pic[i][j]);
}
}
for(maxn = 1; ; ++maxn){
memset(vis, 0, sizeof vis);
vis[sy][sx] = 1;
if(dfs(sy, sx, 0)){
for(int i = 0; i < maxn; ++i){
printf("%c", s[ans[i]]);
}
printf("\n");
break;
}
}
}
return 0;
}
UVA - 10384 The Wall Pusher(推门游戏)(IDA*)的更多相关文章
- UVa 10384 - The Wall Pushers
链接: https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem& ...
- JavaScript写一个小乌龟推箱子游戏
推箱子游戏是老游戏了, 网上有各种各样的版本, 说下推箱子游戏的简单实现,以及我找到的一些参考视频和实例: 推箱子游戏的在线DEMO : 打开 如下是效果图: 这个拖箱子游戏做了移动端的适配, 我使用 ...
- 用HTML5+原生js实现的推箱子游戏
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title> ...
- 【CCpp程序设计2017】推箱子游戏
我的还……支持撤销!用链表实现! 题目:推箱子小游戏(基于console) 功能要求: 将p09迷宫游戏改造为“推箱子”游戏: 在地图中增加箱子.箱子目标位置等图形: 当玩家将所有箱子归位,则显示玩家 ...
- JavaScript 推箱子游戏
推箱子游戏的 逻辑非常简单,但是如果不动手的话,还是不太清楚.我在这里讲一下自己的思路. 制作推箱子,首先要有自己的设计素材.如下我也是网上找的素材 第二步,理清游戏的规则. 游戏规则: 1.小人将箱 ...
- three.js 制作一个三维的推箱子游戏
今天郭先生发现大家更喜欢看我发的three.js小作品,今天我就发一个3d版本推箱子的游戏,其实webGL有很多框架,three.js并不合适做游戏引擎,但是可以尝试一些小游戏.在线案例请点击博客原文 ...
- C# 推箱子游戏&对战游戏
推箱子游戏提纲,只有向右向上的操作,向左向下同理,后期需完善. namespace 推箱子 { class Program { static void Main(string[] args) { // ...
- 用C写一个简单的推箱子游戏(二)
下面接着上一篇随笔<用C写一个简单的推箱子游戏(一)>来写 tuidong()函数是用来判断游戏人物前方情况的函数,是推箱子游戏中非常重要的一个函数,下面从它开始继续介绍推箱子的小程序怎么 ...
- 用C写一个简单的推箱子游戏(一)
我现在在读大二,我们有一门课程叫<操作系统>,课程考查要求我们可以写一段程序或者写Windows.iOS.Mac的发展历程.后面我结合网上的资料参考,就想用自己之前简单学过的C写一关的推箱 ...
随机推荐
- Android 隐藏手机号中间四位和隐藏邮箱地址中间四位
/** * 手机号用****号隐藏中间数字 * * @param phone * @return */public static String settingphone(String phone) { ...
- eclipse不能启动,An internal error occurred during: "reload maven project".
An internal error occurred during: "reload maven project". 这个错误是因为项目已经关闭,导致 导致此问题的原因是Sprin ...
- SystemVerilog基本语法总结(中)
Systemverilog 语法总结(中) 上一个博客分享了SV基本的概念,这一博客继续分享,等下一个博客分享一个公司的验证的笔试题目. l 事件 背景: Verilog中当一个线程在一个事件上发生阻 ...
- sqlserver数据库查询
帮助类 using System; using System.Collections.Generic; using System.Data; using System.Data.SqlClient; ...
- List循环添加数据覆盖问题
问题:java开发时,当我们使用List.add();循环添加数据,有时会出现前面添加的数据会被后面覆盖的现象.这是怎么回事尼? 会覆盖数据的代码 package com.boot.test; imp ...
- 十五 JSP开发模式&MVC设计模式
JSP开发模式: JavaBean + JSP : 缺点:页面代码过多,不利于维护,JSP页面代码变得臃肿 Servlet + JavaBean + JSP :MVC设计模式 M:model 模 ...
- 关于netty配置的理解serverBootstrap.option和serverBootstrap.childOption
The parameters that we set using ServerBootStrap.option apply to the ChannelConfig of a newly create ...
- 云时代架构阅读笔记十四——我对Hash算法的理解
Hash,一般翻译做“散列”,也有直接音译为“哈希”的,就是把任意长度的输入(又叫做预映射, pre-image),通过散列算法,变换成固定长度的输出,该输出就是散列值.这种转换是一种压缩映射,也就是 ...
- [Codeforces]1263D Secret Passwords
题目 One unknown hacker wants to get the admin's password of AtForces testing system, to get problems ...
- mac搭建nginx
0.介绍 Nginx (engine x) 是一个高性能的HTTP和反向代理web服务器,同时也提供了IMAP/POP3/SMTP服务.Nginx是由伊戈尔·赛索耶夫为俄罗斯访问量第二的Rambler ...