티스토리 뷰
https://www.acmicpc.net/problem/2468
백준 소스코드 [C++] 2468 안전 영역
#include <iostream>
#include <utility>
#include <vector>
#include <queue>
#include <string.h>
using namespace std;
int n, cnt = 0, M = 0, m = 101,mid,flr;
int dir[4][2] = { {1,0} ,{0,1} ,{-1,0}, {0,-1} };
bool check[102][102];
int arr[102][102];
pair<int, int>pp;
queue <pair<int,int>> q, t;
void bfs() {
while (q.empty() != true) {
pp = q.front();
for (int i = 0;i < 4;i++) {
if (check[pp.first + dir[i][0]][pp.second + dir[i][1]] == true &&
arr[pp.first + dir[i][0]][pp.second + dir[i][1]] >= mid )
{
check[pp.first + dir[i][0]][pp.second + dir[i][1]] = false;
q.push({ pp.first + dir[i][0],pp.second + dir[i][1] });
}
}
q.pop();
}
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cin >> n;
for (int i = 1;i <= n;i++)for (int j = 1;j <= n;j++) {
cin >> arr[i][j];
m = min(m, arr[i][j]);
M = max(M, arr[i][j]);
}
for (mid = M;m <= mid;mid--) {
flr = 0;
for (int i = 1;i <= n;i++)for (int j = 1;j <= n;j++)check[i][j] = true;
for (int i = 1;i <= n;i++)
for (int j = 1;j <= n;j++)
if (arr[i][j] >= mid && check[i][j] == true) {
q.push({ i,j });
check[i][j] = false;
bfs();
flr++;
}
cnt = max(cnt, flr);
}
cout << cnt;
return 0;
}
'백준' 카테고리의 다른 글
백준 소스코드 [C++] 15240 Paint bucket (0) | 2020.08.25 |
---|---|
백준 소스코드 [C++] 3184 양 (0) | 2020.08.25 |
백준 소스코드 [C++] 1697 숨바꼭질 (0) | 2020.08.24 |
백준 소스코드 [C++] 14502 연구소 (0) | 2020.08.24 |
백준 소스코드 [C++] 2606 바이러스 (0) | 2020.08.23 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
TAG
- State Restoration
- mach-o
- WWDC19
- 코딩대회
- 최단경로문제
- WWDC16
- 포드 풀커슨 알고리즘
- 최단경로 알고리즘
- 컴퓨터 추상화
- Testable
- 부스트캠프 6기
- test coverage
- WWDC21
- WWDC17
- 벨만포드 시간복잡도
- MeTal
- CompositionalLayout
- 벨만포드 알고리즘
- 강한 순환 참조
- rxswift
- 네트워크 플로우
- HIG
- 에드몬드 카프 알고리즘
- observeOn
- CPU와 Memory
- IOS
- 네트워크 유량
- 최단경로 문제
- 다익스트라 시간복잡도
- 최대 매칭
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함