HDU - 1312 Red and Black

HDU - 1312 Red and Black


#include"stdio.h"
#include"queue"
#include"stdlib.h"
using namespace std;
int dir[4][2] = { 0,1,0,-1,-1,0,1,0 };
char map[20][20]; 
int W, H,num;
struct node { int x, y; };
#define check(x, y) (x<W && x>=0 && y >=0 && y<H)
void BFS(int dx, int dy)
{
    num = 1;
    queue<node>q;
    node start, next;
    start.x = dx; start.y = dy;
    q.push(start);
    while (!q.empty())
    {
        start = q.front();
        q.pop();
        for (int i = 0; i < 4; i++)
        {
            next.x = start.x + dir[i][0];
            next.y = start.y + dir[i][1];
            if (check(next.x, next.y) && map[next.x][next.y] == '.')
            {
                num++;
                map[next.x][next.y] = '#';
                q.push(next);
            }
        }
    }
}
int main()
{
    int dx, dy;
    while (scanf("%d%d", &W, &H)!=EOF)
    {
        getchar();
        if (W == 0 || H == 0)break;
        for (int j = 0; j < H; ++j)
        {
            for (int i = 0; i < W; ++i)
            {
                scanf("%c", &map[i][j]);
                if (map[i][j] == '@')
                {
                    dx = i; dy = j;
                }
            }
            getchar();
        }
        num = 0;
        BFS(dx, dy);
        printf("%d\n", num);
    }
    return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值