728x90
반응형
https://www.acmicpc.net/problem/2468
전체 코드
#include <bits/stdc++.h>
using namespace std;
int N;
int MAP[101][101];
int minValue = 2e9, maxValue = 0;
bool isVisited[101][101];
int dx[] = {-1, 0, 1, 0};
int dy[] = {0, 1, 0, -1};
void clearVisit(){
for(int i=0; i<N; i++){
for(int j=0; j<N; j++){
isVisited[i][j] = false;
}
}
}
// 안전영역 체크
void findSafePlace(int h, int r, int c){
queue<pair<int, int>> q;
pair<int, int> p;
p = {r, c};
q.push(p);
while(!q.empty()){
int x = q.front().first;
int y = q.front().second;
isVisited[x][y] = true;
q.pop();
for(int i=0; i<4; i++){
int nx = x + dx[i];
int ny = y + dy[i];
if(nx<0 || nx>=N || ny<0 || ny>=N) continue;
if(MAP[nx][ny]>h && !isVisited[nx][ny]){
isVisited[nx][ny] = true;
pair<int, int> tmp;
tmp.first = nx;
tmp.second = ny;
q.push(tmp);
}
}
}
}
void input(){
cin >> N;
for(int i=0; i<N; i++){
for(int j=0; j<N; j++){
int x;
cin >> x;
MAP[i][j] = x;
minValue = min(minValue, x);
maxValue = max(maxValue, x);
}
}
}
int main(){
ios::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
int result = 0;
input();
for(int h=minValue-1; h<maxValue; h++){
int count = 0;
clearVisit();
for(int i=0; i<N; i++){
for(int j=0; j<N; j++){
if(MAP[i][j]>h && !isVisited[i][j]){
findSafePlace(h, i, j);
count++;
}
}
}
result = max(result, count);
}
cout << result;
return 0;
}
728x90
반응형
'알고리즘 > BFS & DFS' 카테고리의 다른 글
[백준/BFS&DFS/C++] 1012번 유기농 배추 (0) | 2023.02.28 |
---|---|
[백준/BFS&DFS/C++] 9205번 맥주 마시면서 걸어가기 (0) | 2023.02.17 |
[백준/구현/BFS&DFS/C++] 2573번 빙산 (0) | 2023.02.09 |
[백준/BFS&DFS/C++] 2644번 촌수계산 * (0) | 2023.02.01 |
[백준/BFS/C++] 2606번 바이러스 (0) | 2023.01.24 |