沐里纷纷


私信TA

用户名:Epoch

访问量:62827

签 名:

我不会算法

等  级
排  名 37
经  验 12818
参赛次数 1
文章发表 172
年  龄 0
在职情况 学生
学  校
专  业

  自我简介:

不会算法

解题思路:

注意事项:

参考代码:

#define _CRT_SECURE_NO_WARNINGS

#include <iostream>
#include <algorithm>
#include <string>
#include <stdio.h>
#include <queue>
#define N 100

using namespace std;

bool Map[N + 2][N + 2];
bool vis[N + 2][N + 2];

int dirRow[] = { -1, 0, 1, 0 };
int dirCol[] = { 0, 1, 0, -1 };

typedef struct {
	bool curPower;
	int curRow;
	int curCol;
	int step;
} Node;

int BFS(int aRow, int aCol, int bRow, int bCol, const int n)
{
	int ans = 0;
	bool firstTime = true;
	queue<Node> Q;
	Node root;
	root.curRow = aRow;
	root.curCol = aCol;
	root.step = 0;
	root.curPower = false;
	Q.push(root);

	while (!Q.empty())
	{
		Node curNode = Q.front();
		Q.pop();

		vis[curNode.curRow][curNode.curCol] = true;

		if (curNode.curRow == bRow && curNode.curCol == bCol)
		{
			ans = curNode.step;
			break;
		}

		for (int i = 0; i < 4; i++)
		{
			int newRow = curNode.curRow + dirRow[i], newCol = curNode.curCol + dirCol[i];
			bool newPower = Map[newRow][newCol];
			if ((firstTime || (newRow == bRow && newCol == bCol) || newPower == !curNode.curPower) && newRow < n && newRow >= 0 && newCol < n && newCol >= 0 && !vis[newRow][newCol])
			{
				Node newNode;
				newNode.curRow = newRow;
				newNode.curCol = newCol;
				newNode.step = curNode.step + 1;
				newNode.curPower = newPower;
				Q.push(newNode);
				vis[newRow][newCol] = true;
			}
		}
		if (firstTime)
			firstTime = false;
	}
	return ans;
}

int main(void)
{

	int n = 0;
	cin >> n;

	int aRow = 0, aCol = 0, bRow = 0, bCol = 0;

	for (int i = 0; i < n; i++)
	{
		for (int j = 0; j < n; j++)
		{
			char temp;
			cin >> temp;
			if (temp == '+')
				Map[i][j] = true;
			else if (temp == '-')
				Map[i][j] = false;
			else if (temp == 'A')
			{
				aRow = i;
				aCol = j;
			}
			else if (temp == 'B')
			{
				bRow = i;
				bCol = j;
			}
		}
	}

	cout << BFS(aRow, aCol, bRow, bCol, n) << endl;
	
	return 0;
}


 

0.0分

0 人评分

看不懂代码?想转换其他语言的代码? 或者想问其他问题? 试试问问AI编程助手,随时响应你的问题:

编程语言转换万能编程问答  

代码解释器

代码纠错

SQL生成与解释

  评论区