반응형
본 문제는 '2010 한국정보올림피아드 초등부 2번' 문제다. 장마철에 물에 잠지기 않는 안전 구역의 최대 개수를 구하는 문제다.
- 기준값 0 ~ 배열의 최댓값까지 반복
- 기준값보다 높은 지역 개수 구하기
- 제일 큰 안전 구역의 개수 구하기
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
|
#include <cstdio>
#include <queue>
#include <cstring>
using namespace std;
int d[101][101];
int dx[] = {1, -1, 0, 0};
int dy[] = {0, 0, 1, -1};
bool chk[101][101];
int main() {
int n, max = 0;
scanf("%d", &n);
for (int i = 0; i < n; i++) {
for (int j = 0; j < n; j++) {
scanf("%d", &d[i][j]);
if (max < d[i][j]) max = d[i][j];
}
}
queue<pair<int, int>> q;
int index = 0;
int ans = 0;
// 기준 이용하여 범람지역 확인
while (index != max) {
int cnt = 0;
memset(chk, false, sizeof(chk));
for (int i = 0; i < n; i++) {
for (int j = 0; j < n; j++) {
// 기준값 보다 높을 때
if (d[i][j] > index && !chk[i][j]) {
q.push(make_pair(i, j));
chk[i][j] = true;
cnt += 1;
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 (nx >= 0 && nx < n && ny >= 0 && ny < n) {
if (d[nx][ny] > index && !chk[nx][ny]) {
q.push(make_pair(nx, ny));
chk[nx][ny] = true;
}
}
}
}
}
}
}
index += 1;
// 범람 구역의 최대값 찾기
if (ans < cnt) ans = cnt;
}
printf("%d", ans);
return 0;
}
|
cs |
반응형
'백준' 카테고리의 다른 글
[백준 10828] 스택, C++ (0) | 2020.01.08 |
---|---|
[백준] 7569 - 토마토, C++ (0) | 2020.01.08 |
[백준 6603] 로또, C++ (0) | 2020.01.07 |
[백준] 2583 - 영역 구하기, C++ (0) | 2020.01.07 |
[백준] 11403 - 경로 찾기, C++ (0) | 2020.01.07 |
댓글