码迷,mamicode.com
首页 > 其他好文 > 详细

POJ - 1111 Image Perimeters

时间:2014-06-05 06:23:39      阅读:221      评论:0      收藏:0      [点我收藏+]

标签:c   style   class   blog   code   a   

题意:求‘X‘围成的周长

思路:按理说每增加一个就是周长加4,但是要减去重复的地方,这里我是用BFS做的,如果是BFS的模板思路的话是不行的,应该要先取出再标记

#include <iostream>
#include <cstdio>
#include <cstring>
#include <algorithm>
#include <queue>
using namespace std;
const int MAXN = 30;

struct node {
	int x,y;
};
queue<node> qu;
int dx[] = {0,0,1,-1,1,1,-1,-1};
int dy[] = {1,-1,0,0,1,-1,1,-1};
int vis[MAXN][MAXN],R,C,sx,sy,ans;
char map[MAXN][MAXN];

int check(int x, int y) {
	if (x >= 0 && x < R && y >= 0 && y < C && map[x][y] == 'X')
		return 1;
	return 0;
}

int bfs(int r, int c) {
	node st;
	st.x = r,st.y = c;
	qu.push(st);
	while (!qu.empty()) {
		node cur = qu.front();
		qu.pop();
		if (!vis[cur.x][cur.y]) {
			ans += 4;
			for (int i = 0; i < 4; i++) {
				int nx = cur.x + dx[i];
				int ny = cur.y + dy[i];
				if (check(nx, ny) && vis[nx][ny])
					ans -= 2;
			}
			vis[cur.x][cur.y] = 1;
			for (int i = 0; i < 8; i++) {
				int nx = cur.x + dx[i];
				int ny = cur.y + dy[i];
				if (check(nx, ny)) {
					st.x = nx;
					st.y = ny;
					qu.push(st);
				}
			}
		}
	}
	return ans;
}

int main() {
	while (scanf("%d%d%d%d%*c", &R, &C, &sx, &sy) != EOF && R+C+sx+sy != 0) {
		memset(map, 0, sizeof(map));
		memset(vis, 0, sizeof(vis));
		while (!qu.empty()) 
			qu.pop();
		ans = 0;
		for (int i = 0; i < R; i++)
			gets(map[i]);
		printf("%d\n", bfs(sx-1, sy-1));
	}
	return 0;
}



POJ - 1111 Image Perimeters,布布扣,bubuko.com

POJ - 1111 Image Perimeters

标签:c   style   class   blog   code   a   

原文地址:http://blog.csdn.net/u011345136/article/details/27373439

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!