zoukankan
html css js c++ java
HDU1254 推箱子 BFS+优先队列
/* 箱子和人共同组成一个状态,用node来记录状态 使用优先队列,是因为只有箱子移动,记数才+1,并不是每次都+1, 从队列中选择记数最小的,进行下一步搜索 只使用优先队列不能保证结果是最小。 因为两个记数相同的状态,下一步的记数不一定相同 使用flag避免重复计算 */ #include <iostream> #include <queue> using namespace std; struct node { int ceil; int people_x,people_y; int box_x,box_y; bool operator<(const node& A)const { return ceil > A.ceil; } }; int map[9][9]; priority_queue<node> Q; int dir[4][2] = {{1, 0},{-1, 0},{0, 1},{0, -1}}; bool flag[9][9][9][9]; int main() { int t, m, n, i, j, px,py,bx,by, ans; node p, q; cin>>t; while(t--) { cin>>m>>n; memset(map, 0, sizeof(map)); memset(flag, 0, sizeof(flag)); ans = -1; for(i = 0; i < m; i++) { for(j = 0; j < n; j++) { cin>>map[i][j]; if(map[i][j] == 4) { p.people_x = i; p.people_y = j; } else if(map[i][j] == 2) { p.box_x = i; p.box_y = j; } } } while(!Q.empty())Q.pop(); p.ceil = 0;Q.push(p); flag[p.people_x][p.people_y][p.box_x][p.box_y] = 1; ans = -1; while(!Q.empty()) { p = Q.top();Q.pop(); px = p.people_x; py = p.people_y; bx = p.box_x; by = p.box_y; if(map[bx][by] == 3) { if(ans == -1 || ans > p.ceil) ans = p.ceil; } for(i = 0; i < 4; i++) { //越界 if((px+dir[i][0])<0 || (px+dir[i][0]) >= m || (py+dir[i][1]) < 0 || (py+dir[i][1]) >= n) continue; //墙 else if(map[px+dir[i][0]][py+dir[i][1]] == 1) continue; //不是箱子 else if(px+dir[i][0] != bx || py+dir[i][1] != by) { q = p; q.people_x += dir[i][0]; q.people_y += dir[i][1]; if(flag[q.people_x][q.people_y][q.box_x][q.box_y] == 0) { flag[q.people_x][q.people_y][q.box_x][q.box_y] = 1; Q.push(q); } } //是箱子 else if(px+dir[i][0] == bx && py+dir[i][1] == by) { //越界 if((px+2*dir[i][0])<0 || (px+2*dir[i][0]) >= m || (py+2*dir[i][1]) < 0 || (py+2*dir[i][1]) >= n) continue; //墙 else if(map[px+2*dir[i][0]][py+2*dir[i][1]] == 1) continue; //推箱子 q.box_x = px+2*dir[i][0]; q.box_y = py+2*dir[i][1]; q.people_x = px+dir[i][0];q.people_y = py+dir[i][1]; q.ceil = p.ceil + 1; if(flag[q.people_x][q.people_y][q.box_x][q.box_y] == 0) { flag[q.people_x][q.people_y][q.box_x][q.box_y] = 1; Q.push(q); } } } } cout<<ans<<endl; } return 0; }
查看全文
相关阅读:
遍历Newtonsoft.Json.Linq.JObject
JSON中JObject和JArray,JValue序列化(Linq)
RabbitMQ学习系列二:.net 环境下 C#代码使用 RabbitMQ 消息队列
RabbitMQ学习系列三:.net 环境下 C#代码订阅 RabbitMQ 消息并处理
RabbitMQ学习系列一:windows下安装RabbitMQ服务
红帽企业版Linux成为Linux下的.NET Core的参考平台
LINUX下SYN FLOOD攻击及LINUX下SYN攻防简述
Linux下tar命令的各种参数选项和他们的作用整理
异常值监测的方法 Tukey test
Git如何回滚代码?
原文地址:https://www.cnblogs.com/windmissing/p/2559884.html
最新文章
js 数组清空 方法 汇总
js forEach for区别
JavaScript toString、String和stringify方法区别
vue 表单 验证 async-validator
element-ui table 前端渲染序号 index
js获取时间戳
js Object.is 相等判断
js Object.defineProperty 使用
使用hasOwnProperty监测对象是否含有某个属性
Charles 使用
热门文章
selenium 中装饰器作用
python 中读取yaml
Python 读取写入配置文件 ConfigParser
selenium-python读取XML文件
showDoc的基本使用方法
常用接口文档模板
postman 抓包工具charles的使用
postman 做接口测试
抓包工具Charles简单使用介绍
Java:单例模式的七种写法
Copyright © 2011-2022 走看看