티스토리 뷰
백준 :: BOJ :: 2589 :: 보물섬
출처 : https://www.acmicpc.net/problem/2589
#include <iostream>
#include <memory.h>
#include <algorithm>
#include <queue>
using namespace std;
int N, M, ans;
int map[50][50];
int depth[50][50];
bool visited[50][50];
int dir[4][2] = { {-1,0},{0,1},{1,0},{0,-1} };
queue <pair<int,int>> q;
inline bool check(int i, int j) { return ((i>=0 && j>=0 && i<N && j<M
&& !visited[i][j]&&map[i][j]) ? true : false); }
void bfs(int i, int j) {
visited[i][j] = true;
q.push(make_pair(i,j));
int ii, jj;
while (!q.empty()) {
ii = q.front().first; jj = q.front().second; q.pop();
for (int d = 0; d < 4; d++) {
int ni = ii + dir[d][0]; int nj = jj + dir[d][1];
if (check(ni, nj)) {
visited[ni][nj] = true;
q.push(make_pair(ni, nj));
depth[ni][nj] = depth[ii][jj] + 1;
ans = max(ans, depth[ni][nj]);
}
}
}
}
int main() {
cin >> N >> M; ans = 0;
char c;
for (int i = 0; i < N; i++) {
for (int j = 0; j < M; j++) {
cin >> c; map[i][j] = (c == 'L' ? 1 : 0);
}
}
for (int i = 0; i < N; i++) {
for (int j = 0; j < M; j++) {
if (map[i][j]) {
bfs(i, j);
memset(visited, 0, sizeof(visited));
memset(depth, 0, sizeof(depth));
}
}
}
cout << ans << endl;
return 0;
}
'알고리즘 > BOJ' 카테고리의 다른 글
[BOJ 2178] 미로탐색 (0) | 2018.10.02 |
---|---|
[BOJ 2468] 안전 영역 (0) | 2018.09.18 |
[BOJ 2174] 로봇 시뮬레이션 (0) | 2018.08.27 |
[BOJ 1103] 게임 (0) | 2018.08.26 |
[BOJ 1937] 욕심쟁이 판다 (0) | 2018.08.26 |
- Total
- Today
- Yesterday
- boj
- DP
- 게리맨더링 2
- 17143
- 입출력
- hackerrank
- 역량 테스트
- 2018 KAKAO BLIND RECRUITMENT
- 2018 카카오 블라인드 채용
- 17140
- DFS
- 백준
- 이차원 배열과 연산
- 알고리즘
- 삼성
- 팁
- 17144
- 시간 복잡도
- 17837
- 트렌드
- 새로운 게임 2
- string
- 17142
- SW Expert Academy
- 미세먼지 안녕!
- 17779
- scanf
- 연구소 3
- SWEA
- STL
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |