洛谷 P1825 [USACO11OPEN]Corn Maze S(bfs)

題目傳送

1.這僅僅是一道加了傳送門的bfs
2.僅僅加了一個傳送門,就卡了我一下午
3.門存在不成對的情況。。。。。。。。。

#include <iostream>
#include <queue>
#include <cstring>
using namespace std;
const int maxn = 305;
const int inf = 0x3f3f3f3f;
const int dx[] = { 0,1,0,-1 };
const int dy[] = { 1,0,-1,0 };

struct node {
	int x, y;
	node(int x = 0, int y = 0) :x(x), y(y) {}
}cs[30][2];  //記錄傳送門

int n, m, qx, qy, zx, zy, fx, fy;
int map[maxn][maxn];
int step[maxn][maxn];
queue<node> q;

//找到另一個傳送門
void ff(int x, int y)
{
	if (cs[map[x][y] - 'A'][0].x != x || cs[map[x][y] - 'A'][0].y != y) {
		fx = cs[map[x][y] - 'A'][0].x;
		fy = cs[map[x][y] - 'A'][0].y;
	}
	else {
		fx = cs[map[x][y] - 'A'][1].x;
		fy = cs[map[x][y] - 'A'][1].y;
	}
}

//判斷傳送門是否成對
bool cheak(int x, int y)
{
	return cs[map[x][y] - 'A'][1].x != 0;
}

void bfs()
{
	memset(step, inf, sizeof(step));
	step[qx][qy] = 0;
	q.push(node(qx, qy));
	while (q.size()) {
		int x = q.front().x;
		int y = q.front().y;
		q.pop();
		for (int i = 0; i < 4; i++) {
			int xx = x + dx[i];
			int yy = y + dy[i];
			if (!map[xx][yy]) continue;
			//傳送
			if (map[xx][yy] >= 'A' && map[xx][yy] <= 'Z' && cheak(xx, yy)) {
				ff(xx, yy);
				if (step[fx][fy] > step[x][y] + 1) {
					step[fx][fy] = step[x][y] + 1;
					q.push(node(fx, fy));
				}
			}
			//用腳走
			else if (step[xx][yy] > step[x][y] + 1) {
				step[xx][yy] = step[x][y] + 1;
				q.push(node(xx, yy));
			}
		}
	}
}

int main(void)
{
	//freopen("D:\\in.txt", "r", stdin);
	cin >> n >> m;
	for (int i = 1; i <= n; i++) {
		for (int j = 1; j <= m; j++) {
			char ch;
			cin >> ch;
			if (ch == '.') map[i][j] = 1;
			else if (ch == '#') map[i][j] = 0;
			else if (ch == '@') {
				qx = i;
				qy = j;
				map[i][j] = 1;
			}
			else if (ch == '=') {
				zx = i;
				zy = j;
				map[i][j] = 1;
			}
			else if (ch >= 'A' && ch <= 'Z') {
				//記錄傳送門
				if (cs[ch - 'A'][0].x == 0) {
					cs[ch - 'A'][0].x = i;
					cs[ch - 'A'][0].y = j;
				}
				else {
					cs[ch - 'A'][1].x = i;
					cs[ch - 'A'][1].y = j;
				}
				map[i][j] = ch;
			}
		}
	}
	bfs();
	cout << step[zx][zy] << endl;
	return 0;
}
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章