*1이 아닌 모든 좌표에 대해서 bfs로 8방향을 탐색한다.
*bfs는 아기상어를 만나는 가장 짧은 경로까지의 거리를 반환한다.
*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
|
#include <iostream>
#include <vector>
#include <queue>
#include <functional>
#include <cstring>
using namespace std;
int n, m;
int map[51][51];
typedef pair<int, int> pp;
typedef pair<int, pp> ipp;
int dx[8] = {-1, -1, -1, 0, 0, 1, 1, 1}, dy[8] = {-1, 0, 1, -1, 1, -1, 0, 1};
bool visited[51][51];
int bfs(int i, int j)
{
int ans = 2501;
queue<ipp> q;
q.push(ipp(0, pp(i, j)));
memset(visited, 0, sizeof(visited));
visited[i][j] = true;
while (!q.empty())
{
int size = q.size();
while (size--)
{
int cnt = q.front().first;
q.pop();
if (map[x][y])
{
ans = ans > cnt ? cnt : ans;
continue;
}
for (int k = 0; k < 8; k++)
{
int nx = x + dx[k];
int ny = y + dy[k];
if (nx < 0 || nx >= n || ny < 0 || ny >= m || visited[nx][ny])
continue;
visited[nx][ny] = true;
q.push(ipp(cnt + 1, pp(nx, ny)));
}
}
}
return ans;
}
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(0);
cin >> n >> m;
for (int i = 0; i < n; i++)
{
for (int j = 0; j < m; j++)
{
cin >> map[i][j];
}
}
int ans = 0;
for (int i = 0; i < n; i++)
{
for (int j = 0; j < m; j++)
{
if (!map[i][j])
{
int res = bfs(i, j);
ans = ans > res ? ans : res;
}
}
}
cout << ans << '\n';
return 0;
}
http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4ftext-decoration:none">Colored by Color Scripter
|