POJ 1101 解题报告

这道题是BFS题。需要注意题意理解:最少segments而不是最短路径。由于边界可以出去,所以实现的时候需要注意坐标。

例子之间没有输出空行WA了一次。输入错误WA了多次(最后输入是逐个输入字符,而不是输入行)。

thestoryofsnow1101Accepted220K16MSC++2835B
/* 
ID: thestor1 
LANG: C++ 
TASK: poj1101 
*/
#include <iostream>
#include <fstream>
#include <cmath>
#include <cstdio>
#include <cstring>
#include <limits>
#include <string>
#include <vector>
#include <list>
#include <set>
#include <map>
#include <queue>
#include <stack>
#include <algorithm>
#include <cassert>

using namespace std;

const int MAXW = 75;
const int MAXH = 75;

bool isBorder(int x, int y, int H, int W) {
	return x == 0 || y == 0 || x == H + 1 || y == W + 1;
}

int main()
{
	int directions[4][2] = {{-1, 0}, {0, 1}, {1, 0}, {0, -1}};
	// extra width for '\n' and `\0` in the end
	char board[MAXH][MAXW + 3];
	int dis[MAXH + 2][MAXW + 2];

	int W, H, t = 0;
	int x1, y1, x2, y2;
	while (scanf("%d%d", &W, &H) > 0 && W && H) {
		t++;

		// for (int h = 0; h < H; ++h) {
		// 	fgets(board[h], W + 2, stdin);
		// 	// scanf("%[^\n]s", board[h]);
		// }

		for (int h = 0; h < H; ++h)
		{	
			// ignore the '\n'
			char newline = getchar();
			// printf("[debug]newline: [%c]\n", newline);
			assert(newline == '\n');
			for(int w = 0; w < W; ++w) {
				board[h][w] = getchar();
			// 	printf("[debug]board[%d][%d]: [%c]\n", h, w, board[h][w]);
			}
		}

		// printf("[debug]board:\n");
		// for (int h = 0; h < H; ++h) {
		// 	for (int w = 0; w < W; ++w) {
		// 		printf("%c", board[h][w]);	
		// 	}
		// 	printf("\n");
		// }

		printf("Board #%d:\n", t);
		int pno = 0;
		while (scanf("%d%d%d%d", &y1, &x1, &y2, &x2) > 0) {
			pno++;
			// printf("[debug]%d %d %d %d\n", x1, y1, x2, y2);
			if (!x1 && !y1 && !x2 && !y2) {
				break;
			}

			for (int h = 0; h <= H + 1; ++h) {
				for (int w = 0; w <= W + 1; ++w) {
					dis[h][w] = -1;
				}
			}

			dis[x1][y1] = 0;
			queue<pair<int, int> > que;
			que.push(make_pair(x1, y1));
			while (!que.empty()) {
				pair<int, int> cur = que.front();
				que.pop();
				int x = cur.first, y = cur.second;
				// printf("[debug]cur: (%d, %d), dis: %d\n", x, y, dis[x][y]);

				if (x == x2 && y == y2) {
					break;
				}

				for (int d = 0; d < 4; ++d) {
					int nx = x, ny = y;	
					bool canMove = true;
					while (canMove) {
						nx += directions[d][0];
						ny += directions[d][1];

						canMove = false;
						if (0 <= nx && nx <= H + 1 && 0 <= ny && ny <= W + 1 && dis[nx][ny] < 0) {
							dis[nx][ny] = dis[x][y] + 1;
							if (isBorder(nx, ny, H, W) || board[nx - 1][ny - 1] != 'X') {
								que.push(make_pair(nx, ny));
								canMove = true;
							}
						}
					}
				}
			}

			// printf("[debug]dis:\n");
			// for (int i = 0; i <= H + 1; ++i) {
			// 	for (int j = 0; j <= W + 1; ++j) {
			// 		printf("%2d ", dis[i][j]);
			// 	}
			// 	printf("\n");
			// }

			printf("Pair %d: ", pno);
			if (dis[x2][y2] >= 0) {
				printf("%d segments.\n", dis[x2][y2]);
			} else {
				printf("impossible.\n");
			}
		}
		printf("\n");
	}
		
	return 0;  
}


  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
POJ1753题目为"Flip Game",题目给出了一个4x4的棋盘,每个格子有黑色或白色,每次翻转一个格子会同时翻转它上下左右四个格子的颜色,目标是把整个棋盘都变为同一种颜色,求把棋盘变成同种颜色的最小步数。 解题思路: 一般关于棋盘变色的题目,可以考虑使用搜索来解决。对于POJ1753题目,可以使用广度优先搜索(BFS)来解决。 首先,对于每个格子,定义一个状态,0表示当前格子是白色,1表示当前格子是黑色。 然后,我们可以把棋盘抽象成一个长度为16的二进制数,将所有格子的状态按照从左往右,从上往下的顺序排列,就可以用一个16位的二进制数表示整个棋盘的状态。例如,一个棋盘状态为: 0101 1010 0101 1010 则按照从左往右,从上往下的顺序把所有格子的状态连接起来,即可得到该棋盘的状态为"0101101001011010"。 接着,我们可以使用队列来实现广度优先搜索。首先将初始状态加入队列中,然后对于队列中的每一个状态,我们都尝试将棋盘上的每个格子翻转一次,生成一个新状态,将新状态加入队列中。对于每一个新状态,我们也需要记录它是从哪个状态翻转得到的,以便在得到最终状态时能够输出路径。 在搜索过程中,我们需要维护每个状态离初始状态的步数,即将该状态转换为最终状态需要的最小步数。如果我们找到了最终状态,就可以输出答案,即最小步数。 代码实现:
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值