본문 바로가기

BOJ

백준 2468 / 안전 영역




가장 높은 곳을 알아낸다음


0부터 가장 높은 곳까지 모든 경우에서


비가 찬 곳 1 / 안 찬 곳 0 으로 해서


DFS던 BFS던 인접 영역이 몇갠지 구하면 된다.




DFS


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
96
#include <stdio.h>
#include <iostream>
#include <queue>
#include <vector>
#include <memory.h>
#include <algorithm>
 
using namespace std;
 
int n;
int map[101][101];
int map2[101][101];
bool check[101][101];
int high=0;
 
 
int dx[] = { 1,-1,0,0 };
int dy[] = { 0,0,1,-1 };
 
 
void go(int x, int y) {
 
 
    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 < n) {
            if (map2[nx][ny] == 0 && check[nx][ny] == false) {
                check[nx][ny] = true;
                go(nx, ny);
            }
        }
    }
 
    return;
 
 
 
}
int main() {
    
    //freopen("Text.txt", "r", stdin);
 
    cin >> n;
 
 
 
    for (int i = 0; i < n; i++) {
        for (int j = 0; j < n; j++) {
            cin >> map[i][j];
            high = max(high, map[i][j]);
        }
    }
 
    vector<int>ans;
 
    for (int i = 0; i <= high; i++) {
        
        int area=0;
 
 
        for (int j = 0; j < n; j++) {
            for (int k = 0; k < n; k++) {
                if (map[j][k] <= i) {
                    map2[j][k] = 1;
                }
                else
                    map2[j][k] = 0;
            }
        }
 
        for (int j = 0; j < n; j++) {
            for (int k = 0; k < n; k++) {
                if (map2[j][k] == 0 && check[j][k]==false) {
                    check[j][k] = true;
                    area++;
                    go(j, k);
                }
            }
        }
 
        
        ans.push_back(area);
        memset(check, falsesizeof(check));
 
    }
    
 
    sort(ans.begin(), ans.end());
    cout << ans[ans.size()-1];
 
 
}
 
 
cs












'BOJ' 카테고리의 다른 글

백준 13913 / 숨바꼭질 4  (0) 2019.01.01
백준 7562 / 나이트의 이동  (0) 2019.01.01
백준 2583 / 영역 구하기  (0) 2019.01.01
백준 11403 / 경로 찾기  (0) 2018.12.31
백준 1012 / 유기농 배추  (0) 2018.12.31