티스토리 뷰

알고리즘/백준

[백준] 7576번 토마토

JeongHyeon 2018. 2. 7. 22:23

문제

https://www.acmicpc.net/problem/7576

풀이과정

BFS로 해결할 수 있는 문제. 익은 토마토부터 BFS를 시작하여 거리를 재는 식으로 풀이하면 된다. 문제에서 토마토가 모두 익지 못할 경우 -1을 출력하라고 했는데 이 예외를 까먹고 하지 않아서 몇 번 틀렸다.

소스코드

#include <iostream>
#include <queue>

using namespace std;

#define MAX 1000

int N, M;

int map[MAX][MAX];
int tomato[MAX][MAX];
int dx[4] = { 0,0,-1,1 };
int dy[4] = { -1,1,0,0 };

int main()
{
    ios::sync_with_stdio(false);

    cin >> M >> N;

    queue<pair<int, int>> q;

    for (int i = 0; i < N; i++)
    {
        for (int j = 0; j < M; j++)
        {
            cin >> map[i][j];
            tomato[i][j] = -1;
            if (map[i][j] == 1)
            {
                q.push(make_pair(i, j));
                tomato[i][j] = 0;
            }
        }
    }


    while (!q.empty())
    {
        int x = q.front().first;
        int y = q.front().second;

        q.pop();

        for (int k = 0; k < 4; k++)
        {
            // 상하좌우로 이동
            int nx = x + dx[k]; int ny = y + dy[k];

            if (0 <= nx && nx < N && 0 <= ny && ny < M)
            {
                // 상하좌우로 이동해서 토마토가 익지 않은 경우 방문
                if ( map[nx][ny] == 0 && tomato[nx][ny] == -1)
                {
                    tomato[nx][ny] = tomato[x][y] + 1;
                    q.push(make_pair(nx, ny));
                }
            }
        }
    }

    int ans = 0;

    for (int i = 0; i < N; i++)
    {
        for (int j = 0; j < M; j++)
        {
            if (ans < tomato[i][j])
            {
                ans = tomato[i][j];
            }
        }
    }

    // 토마토가 모두 익지 못한 경우 판단
    for (int i = 0; i<N; i++) {
        for (int j = 0; j<M; j++) {
            if (map[i][j] == 0 && tomato[i][j] == -1) {
                ans = -1;
            }
        }
    }

    cout << ans << "\n";

    return 0;
}

'알고리즘 > 백준' 카테고리의 다른 글

[백준] 1991번 트리 순회  (0) 2018.02.09
[백준] 2146번 다리 만들기  (0) 2018.02.08
[백준] 2178번 미로 탐색  (0) 2018.02.05
[백준] 4963번 섬의 개수  (0) 2018.02.05
[백준] 1003번 피보나치 함수  (0) 2018.01.30
공지사항
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday
링크
«   2024/11   »
1 2
3 4 5 6 7 8 9
10 11 12 13 14 15 16
17 18 19 20 21 22 23
24 25 26 27 28 29 30
글 보관함