250x250
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- readingbook
- MySQL
- 코테 대비
- 코테
- 알고리즘
- 백준
- BFS
- swexpertacademy
- englishbook
- 완전탐색
- 코테 준비
- 원서
- D4
- sw expert academy
- 직무면접
- PyQt
- the midnight library
- dfs
- 삼성
- 코딩테스트
- nightroutine
- STUDYENGLISH
- sw expert
- 쉬운 알고리즘 문제
- 프로그래머스
- SQL
- 원서읽기
- English
- 원서읽자
- 알고리즘 문제
Archives
- Today
- Total
시나브로
17086. 아기 상어 2 본문
728x90
#include <iostream>
#include <queue>
using namespace std;
int main(void) {
freopen("inp.inp", "r", stdin);
freopen("out.out", "w", stdout);
int r, c;
cin >> r >> c;
int map[60][60] = { 0 };
int check[60][60] = { 0 };
queue<pair<int, int>> q;
for(int i=0;i<r;i++){
for (int j = 0; j < c; j++) {
cin >> map[i][j];
if (map[i][j] == 1) {
check[i][j] = 1;
q.push({ i,j });
}
}
}
int dx[] = { -1,-1,0,1,1,1,0,-1 };
int dy[] = { 0,1,1,1,0,-1,-1,-1 };
int max = 0;
while (!q.empty()) {
int i = q.front().first;
int j = q.front().second;
q.pop();
for (int k = 0; k < 8; k++) {
if (i + dx[k] >= 0 && i + dx[k] < r&&j + dy[k] >= 0 && j + dy[k] < c) {
if (check[i + dx[k]][j + dy[k]] == 0) {
q.push({ i + dx[k],j + dy[k] });
check[i + dx[k]][j + dy[k]] = check[i][j] + 1;
if (max < check[i][j] + 1)
max = check[i][j] + 1;
}
}
}
}
cout << max-1 << endl;
return 0;
}
https://www.acmicpc.net/problem/17086
728x90
'알고리즘 > 백준' 카테고리의 다른 글
2470. 두 용액 (0) | 2021.10.31 |
---|---|
17142. 연구소3 (0) | 2020.10.17 |
19238. 스타트 택시 (0) | 2020.10.17 |
15683. 감시 (0) | 2020.10.15 |
14890. 경사로 (0) | 2020.10.15 |
Comments