博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
POJ-3009 Curling 2.0 简单BFS
阅读量:6540 次
发布时间:2019-06-24

本文共 1945 字,大约阅读时间需要 6 分钟。

题意:

给定一个N*M的矩阵(注意N和M的关系),其中0,1,2,3分别代表了不同的意义,现在一个小球从2出发,要到3那个点去,问最少的滚动次数是多少?小球的滚动遵循以下规则,初始位置视为静止状态,只要在静止状态,那么小球可能选择上下左右四个方向相邻没有1(且没有超出整个棋盘的边界)的位置进行移动,一旦选择一个方向,那么就暂时不能够更改方向,直到有一个1挡住了小球。当小球碰撞到了1,那么1变成0,小球又变成了静止态。

解法:

每个状态我们记录被碰撞过点点,这样就能够检测小球碰到1时是否在这条路径中已经被碰撞过。保留状态bfs即可。

代码如下:

#include 
#include
#include
#include
#include
using namespace std;int N, M, G[25][25];int sx, sy;struct Node { char que[12][2], front, tail; // 用来记录被碰掉的点的坐标 char step, x, y; bool Miss(int x, int y) { // 扫描当前点是否在这条路径中已经消失 for (int i = front+1; i <= tail; ++i) { if (que[i][0] == x && que[i][1] == y) return true; } return false; }}info, pos;int front, tail, dir[4][2] = {
0, 1, 0, -1, 1, 0, -1, 0};int bfs() { queue
q; info.x = sx, info.y = sy; info.front = info.tail = 0; // 清空这个对列,因为这个球还没有发生碰撞 info.step = 0; q.push(info); while (!q.empty()) { pos = q.front(); q.pop(); for (int i = 0; i < 4; ++i) { int xx = pos.x + dir[i][0], yy = pos.y + dir[i][1]; if (G[xx][yy] == 3) return pos.step + 1; if (!(G[xx][yy] == 0 || pos.Miss(xx, yy))) continue; for (; G[xx][yy] != -1; xx += dir[i][0], yy += dir[i][1]) { // 模拟整个行走的过程,不执行任何语句 if (G[xx][yy] == 1) { if (!pos.Miss(xx, yy)) break; } else if (G[xx][yy] == 3) { return pos.step + 1; } } if (G[xx][yy] == 1 && pos.step + 1 < 10) { info = pos; // 一个完整的备份 ++info.step; ++info.tail; info.x = xx - dir[i][0], info.y = yy - dir[i][1]; info.que[info.tail][0] = xx; info.que[info.tail][1] = yy; // 添加当前点为消失点 q.push(info); } } } return -1;}int main() { while (scanf("%d %d", &M, &N), N|M) { memset(G, 0xff, sizeof (G)); for (int i = 1; i <= N; ++i) { for (int j = 1; j <= M; ++j) { scanf("%d", &G[i][j]); if (G[i][j] == 2) { sx = i, sy = j; G[i][j] = 0; } } } printf("%d\n", bfs()); } return 0; }

转载于:https://www.cnblogs.com/Lyush/archive/2012/10/18/2730205.html

你可能感兴趣的文章
mysql 新增用户并授权
查看>>
Windows上编译,学习Objective-c
查看>>
Postman发包form-data、x-www-form-urlencoded、raw、binary的区别
查看>>
VBSEdit工具学习深入
查看>>
江苏泰兴开建火车站综合物流基地
查看>>
table里面,怎么根据checkbox选择的一行中的某个单元格的值是否为空,来判断是否该选中...
查看>>
一种机制,与js类似
查看>>
arping命令用法
查看>>
WPF之动态换肤
查看>>
封装一个进度条
查看>>
git clone --early EOF
查看>>
51nod 1135 原根 就是原根...
查看>>
expect用法举例
查看>>
PAT_A1127#ZigZagging on a Tree
查看>>
二叉树的建立和遍历
查看>>
ubuntu Server 安装 php5
查看>>
简单的ajax的结构
查看>>
JavaScript
查看>>
Truncate a string
查看>>
HDOJ1051(贪心)
查看>>