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
- 백준코딩테스트
- COSPRO
- 이젠 골드구현도 어렵네..
- 01BFS
- GatherTown
- 알고리즘
- COSPROJAVA1급
- YBMCOS
- 우선순위큐
- java
- 다이나믹프로그래밍
- 재귀함수
- 취득후기
- DFS
- 게더타운시작
- dp
- 다익스트라
- 자바PS
- 네트워크플로우
- BFS
- 백준
- 엘라스틱서치
- 시뮬레이션
- QUICKSTARTGUIDE
- deque
- PS
- spring
- 완전탐색
- 세그먼트트리
- 구현
Archives
- Today
- Total
공부공간
BOJ -2589 ) 보물섬 본문
입력받은 배열의 모든 값을 확인해주면서 W가 아닌 부분에서의
갈수있는 모든 경로를 BFS를 통하여 구해준다.
가장 큰 길이를 가진 두점이 정답이 된다.
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
|
#include <iostream>
#include <queue>
using namespace std;
char map[51][51];
bool visit[51][51];
int a, b;
void input() {
cin >> a >> b;
for (int y = 0; y < a; y++) {
cin >> map[y];
}
}
int dx[] = { 0,0,+1,-1 };
int dy[] = { +1,-1,0,0 };
typedef struct {
int x, y, time;
}coordi;
int ans = -1;
int main(void) {
cin.tie(0); ios_base::sync_with_stdio(NULL);
input();
for (int y = 0; y < a; y++) {
for (int x = 0; x < b; x++) {
int res = 0;
if (map[y][x] == 'W') continue;
else if(map[y][x]== 'L'){
queue < coordi > Q;
coordi start = { x ,y,0 };
Q.push(start);
while (!Q.empty()) {
int x = Q.front().x;
int y = Q.front().y;
int time = Q.front().time;
Q.pop();
res > time ? res = res : res = time;
for (int index = 0; index < 4; index++) {
int nx = x + dx[index];
int ny = y + dy[index];
if (nx >= 0 && ny >= 0 && nx < b && ny < a) {
if (!visit[ny][nx] && map[ny][nx] =='L') {
visit[ny][nx] = true;
Q.push({ nx,ny,time + 1 });
}
}
}
}
}
ans < res ? ans = res : ans = ans;
for (int y = 0; y < a; y++) {
for (int x = 0; x < b; x++) {
visit[y][x] = false;
}
}
}
}
cout << ans;
return 0;
}
|
'알고리즘 > 완전탐색(BFS,DFS)' 카테고리의 다른 글
BOJ - 5427 ) 불 (0) | 2020.01.17 |
---|---|
BOJ - 7562 ) 나이트의 이동 (0) | 2020.01.17 |
BOJ -2178 ) 미로탐색 (0) | 2020.01.16 |
BOJ - 4179) 불! (0) | 2019.12.26 |
BOJ - 11559) Puyo Puyo (0) | 2019.12.24 |
Comments