백준의 아기상어2(17086) 문제이다.

[ 문제 바로가기 ]


[ 문제풀이 ]

1) 문제를 간단하게 요약해보자면, 아기상어가 없는 빈 칸에서 가장 가까운 아기상어 까지 가는데 걸리는 칸 수의 최댓값을

   구하는 문제이다.

   본인은 입력과 동시에 빈 칸의 좌표들을 Vector에 저장해 주었고, 각각의 좌표들을 시작점으로 BFS탐색을 돌려서

   가장 가까운 아기상어를 찾는 식으로 구현하였다.


[ 소스코드 ]

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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
#include<iostream>
#include<cstring>
#include<queue>
#include<vector>
 
#define endl "\n"
#define MAX 50
using namespace std;
 
int N, M, Answer;
int MAP[MAX][MAX];
bool Visit[MAX][MAX];
vector<pair<intint>> V;
 
int dx[] = { -1-1-100111 };
int dy[] = { -101-11-101 };
 
void Input()
{
    cin >> N >> M;
    for (int i = 0; i < N; i++)
    {
        for (int j = 0; j < M; j++)
        {
            cin >> MAP[i][j];
            if (MAP[i][j] == 0)
            {
                V.push_back(make_pair(i, j));
            }
        }
    }
}
 
int BFS(int a, int b)
{
    queue<pair<pair<intint>int>> Q;
    Q.push(make_pair(make_pair(a, b), 0));
    Visit[a][b] = true;
 
    while (Q.empty() == 0)
    {
        int x = Q.front().first.first;
        int y = Q.front().first.second;
        int Cnt = Q.front().second;
        Q.pop();
 
        if (MAP[x][y] == 1return Cnt;
        
        for (int i = 0; i < 8; i++)
        {
            int nx = x + dx[i];
            int ny = y + dy[i];
            if (nx >= 0 && ny >= 0 && nx < N && ny < M)
            {
                if (Visit[nx][ny] == false)
                {
                    Visit[nx][ny] = true;
                    Q.push(make_pair(make_pair(nx, ny), Cnt + 1));
                }
            }
        }
    }
}
 
void Solution()
{
    for (int i = 0; i < V.size(); i++)
    {
        memset(Visit, falsesizeof(Visit));
        int x = V[i].first;
        int y = V[i].second;
 
        int Temp = BFS(x, y);
        if (Temp > Answer) Answer = Temp;
    }
}
 
void Solve()
{
    Input();
    Solution();
    cout << Answer << endl;
}
 
int main(void)
{
    ios::sync_with_stdio(false);
    cin.tie(NULL);
    cout.tie(NULL);
 
    //freopen("Input.txt", "r", stdin);
    Solve();
 
    return 0;
}
cs


+ Recent posts