Publish:

태그: , , ,

카테고리:

백준 7576번 토마토

문제링크 Q_7576

기록

  • 최소 일수를 구하라고 해서 BFS 로 풀기위해 노력했다.
  • 4 방향을 모두 체크해야 하기에 dx[] = {} , dy[] = {} 로 방향을 체크했다.
  • 2차원 배열 map[][] 에서 앞부분이 세로 , 뒷부분이 가로에 해당하기에 헷갈렸다.
  • 마지막에 걸린 일수를 물었기에 결과값에 -1 을 해주어야 한다.
  • 열심히 해야겠다!

C++ 코드

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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
#include <iostream>
#include <queue>
using namespace std;

int M, N, s = 0; // 가로 , 세로
int map[1001][1001];
int dx[4] = {-1, 1, 0, 0}; // 좌 우
int dy[4] = {0, 0, -1, 1}; // 상 하
queue<pair<int, int>> Q;
void bfs()
{
    while(!Q.empty())
    {
        int x = Q.front().first;
        int y = Q.front().second;
        Q.pop();
        for(int i = 0; i < 4; i++)
        {
            int nx = x + dx[i];
            int ny = y + dy[i];

            if(nx < 0 || ny < 0 || nx >= N || ny >= M) continue;
            if(map[nx][ny] != 0) continue;
            map[nx][ny] = map[x][y] + 1;
            Q.push(make_pair(nx, ny));
        }
    }
}

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

    bfs();

    for(int i = 0; i < N; i++)
    {
        for(int j = 0; j < M; j++)
        {
            if(map[i][j] == 0)
            {
                cout << -1;
                return 0;
            }
            if(s < map[i][j])
            {
                s = map[i][j];
            }
        }
    }
    cout << s - 1;
    return 0;
}
방문해 주셔서 감사합니다!😊

업데이트:

댓글남기기