hdu2102 A计划

题目链接:

here

分析:

遇到上下两层都是# 的,就把上下两层的这个位置都弄成 墙就行。。还有遇到 一层是#一层是墙的。。也直接把俩都弄城墙就行。。。省的要判断他撞死。。哈哈、、我遇到了点小问题。。。就是遇到#的时候,我忘了加步数。。。所以一直wa。。最后才检查出来。。。囧。。。。。低级失误。。。虽然上下楼不用时间。。但是你走到#需要一步的时间。。。

代码:

#include 
#include 
#include 
#include 
using namespace std;

#define inf (0x7f7f7f7f)
const int maxn = 12;

int c, n, m, t;
char map[2][maxn][maxn];
bool vis[2][maxn][maxn];
struct node
{
	int x, y, z;
	int step;
};
queue q;
int dir[4][2] = {{0,1},{0,-1},{1,0},{-1,0}};

bool judge(int x, int y)
{
	if (x < 0 || y < 0 || x >= n || y >= m) return false;
	return true;
}

bool bfs()
{
	bool flag = false;
	while (!q.empty())
	{
		node now = q.front();
		q.pop();

		if (map[now.z][now.x][now.y] == 'P')
		{
			if (now.step >= 0)
				return true;
			else
				break;
		}

		node next;
		for (int i=0; i<4; i++)
		{
			next.x = now.x + dir[i][0];
			next.y = now.y + dir[i][1];
			next.z = now.z;
			next.step = now.step - 1;

			if (!judge(next.x,next.y)) continue;

			if (map[now.z][next.x][next.y] == '#')
				next.z ^= 1;
			
			if (map[next.z][next.x][next.y] != '*' && next.step >= 0 && !vis[next.z][next.x][next.y])
			{
				vis[next.z][next.x][next.y] = true;
				q.push(next);
			}
		}
	}
	return false;
}

int main()
{
//	freopen("2102.in", "r", stdin);
//	freopen("2102.out", "w", stdout);

	scanf("%d", &c);
	while (c--)
	{
		scanf("%d %d %d", &n, &m, &t);
		memset(vis, false, sizeof(vis));
		while (!q.empty()) q.pop();

		int i, j, k;
		for (i=0; i<2; i++)
			for (j=0; j

测试数据:

33
5 5 14
S*#*.
.#...
.....
****.
...#.

..*.P
#.*..
***..
...*.
*.#..

5 5 13
S*#*.
.#...
.....
****.
...#.

..*.P
#.*..
***..
...*.
*.#..


5 5 12
S*#*.
.#...
.....
****.
...#.

..*.P
#.*..
***..
...*.
*.#..

1 2 100
SP

..

1 3 100
S#P

.#.


3 3 11
S..
*#.
#..

...
.#.
.*P




5 5 11
S*#*.
.#...
.....
****.
P.*#.

..*..
#.*..
***..
...*.
*#.#.

5 5 12
S*#*.
.#...
.....
****.
P.*#.

..*..
#.*..
***..
...*.
*#.#.

5 5 12
S*#*.
.#...
.....
****.
P.*#.

..*..
#.*..
***..
...*.
*.##.

5 5 3
S*#*.
.#...
.....
****.
..*#.

.P*..
#.*..
***..
...*.
*#.#.

5 5 9
S*#*.
.#...
.....
****.
..*#.

..*..
#.*..
***..
...*.
*#.P.

4 5 7
S*#*.
...**
.#.**
****.

.*.*.
.#*..
#.#..
.#.*P

5 7 12
S*****P
.#.*#*.
**.#.*.
.*****.
.......

*******
*.#*...
***.#*#
*******
*******

3 3 3
S#P
.*.
...

.##
...
...

输出数据:

YES
NO
NO
YES
NO
NO
NO
NO
NO
YES
YES
NO
YES
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
NO
^o^

你可能感兴趣的:(hdu2102 A计划)