1. 불들이 퍼진 최소시간을 visited에 기록한다.
2. 시작점을 1로 놓고 벽까지 갈 수 있는지 탐색한다.
3. 탐색 가능하면 그때의 시간 출력/ 탐색 불가능 하면 IMPOSSIBLE 출력
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 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 | #include <iostream> #include <algorithm> #include <queue> #include <string> #include <vector> #define P pair<int,int> using namespace std; int r, c, sx, sy; int map[1002][1002]; int visited[1002][1002]; int dx[] = { 0,0,1,-1 }; int dy[] = { 1,-1,0,0 }; void spreadFire(int a,int b) { queue<P> q; q.push(P(a, b)); visited[a][b] = 1; while (!q.empty()) { int x = q.front().first; int y = q.front().second; q.pop(); for (int i = 0; i < 4; i++) { int ax = x + dx[i]; int ay = y + dy[i]; if (map[ax][ay] == '#' || map[ax][ay] == 0) continue; if (visited[ax][ay] == 0 || visited[ax][ay] > visited[x][y] + 1) { visited[ax][ay] = visited[x][y] + 1; q.push(P(ax, ay)); } } } } void findExit() { queue<P> q; q.push(P(sx, sy)); visited[sx][sy] = 1; while (!q.empty()) { int x = q.front().first; int y = q.front().second; q.pop(); if (x == 1 || y == 1 || x == r || y == c) { cout << visited[x][y] << endl; return; } for (int i = 0; i < 4; i++) { int ax = x + dx[i]; int ay = y + dy[i]; if (map[ax][ay] == '#' || map[ax][ay] == 0) continue; if (visited[ax][ay] == 0 || visited[ax][ay] > visited[x][y] + 1) { visited[ax][ay] = visited[x][y] + 1; q.push(P(ax, ay)); } } } cout << "IMPOSSIBLE" << endl; } int main() { ios_base::sync_with_stdio(false); cin >> r >> c; vector<P> v; for (int i = 1; i <= r; i++) { string buf; cin >> buf; for (int j = 1; j <= c; j++) { map[i][j] = buf[j - 1]; if (map[i][j] == 'J') { sx = i; sy = j; } if (map[i][j] == 'F') { v.push_back(P(i, j)); } } } for (auto &p : v) { spreadFire(p.first, p.second); } findExit(); } | cs |
'BOJ::문제풀이' 카테고리의 다른 글
13460 째로탈출 2 (0) | 2018.03.25 |
---|---|
14500 테트로미노 (0) | 2018.03.25 |
5558 치 ~ 즈 (0) | 2018.03.24 |
1654 랜선 자르기 (0) | 2018.02.28 |
2638 치즈 (0) | 2018.02.28 |