본문 바로가기

BOJ

백준 5427 / 불



BFS 문제


야마돌게하는 반례 때문에 한창을 헤맸다.


1

3 3

* * *

* * *

* @ *


바로 나갈 수 있는 경우....


바로 나갈 수 있으면 문제를 안내지 않았을까.....


https://www.youtube.com/watch?v=w211KOQ5BMI


이런 어이없는 반례들까지 모두 해결할 수 있게끔 알고리즘을 완벽히 세워야겠다.


------------------------------



'불' 문제와 비슷한 문제가 있었다. 너구린가 고슴도친가가 어딜 빠져나가는 문제.


이런 문제는 문제를 잘 읽고, 


불을 먼저 이동시켜야하는지 사람을 먼지 이동시켜야하는지 파악해야한다.


이 문제는 불을 먼저 이동시켜야하므로 (물론 사람을 이동시킨후 불이 사람을 잡아먹게(?)해도 풀 수 있을 듯)


불의 위치를 먼저 큐에 넣었다.



테스트 케이스가 여러개인 문제는 꼭! 초기화를 잘 해주어야한다.




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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
#include <stdio.h>
#include <iostream>
#include <vector>
#include <queue>
#include <tuple>
#include <algorithm>
#include <memory.h>
 
using namespace std;
 
 
char map[1001][1001];
bool fcheck[1001][1001];
bool pcheck[1001][1001];
 
int d[1001][1001];
 
 
int dx[] = { 1,-1,0,0 };
int dy[] = { 0,0,1,-1 };
 
 
int main() {
    
    //freopen("Text.txt", "r", stdin);
 
    int testcase;
    int n, m;
 
 
    cin >> testcase;
 
 
 
 
    while (testcase--) {
        bool onestepout = false;
        cin >> m >> n;
 
 
 
        queue<tuple<intintint>>q;
        vector<pair<intint>>ext;
 
        memset(fcheck, falsesizeof(fcheck));
        memset(pcheck, falsesizeof(pcheck));
        memset(d, 0sizeof(d));
            
        for (int i = 0; i < n; i++) {
            for (int j = 0; j < m; j++) {
                cin >> map[i][j];
                if (map[i][j] == '*') {
                    q.push(make_tuple(i, j, 0)); //불
                    fcheck[i][j] = true;
                }
 
                if (i == 0 || i == n - 1 || j == 0 || j == m - 1) {
                    if (map[i][j] == '.') {
 
                        ext.push_back(make_pair(i, j));
                    }
                }
            }
        }
 
 
        for (int i = 0; i < n; i++) {
            for (int j = 0; j < m; j++) {
                if (map[i][j] == '@') {
                    if (i == 0 || i == n - 1 || j == 0 || j == m - 1) {
                        onestepout = true;
 
                    }
                    else {
                        q.push(make_tuple(i, j, 1)); //사람
                        pcheck[i][j] = true;
                    }
                }
            }
        }
 
        while (!q.empty()) {
            int x, y, who;
            tie(x, y, who) = q.front();
            q.pop();
 
 
            if (who == 0) {
 
                for (int i = 0; i < 4; i++) {
                    int nx = x + dx[i];
                    int ny = y + dy[i];
                    if (nx >= 0 && ny >= 0 && nx < n &&ny < m) {
                        if (fcheck[nx][ny] == false && map[nx][ny] != '#' && map[nx][ny]!= '*'){
                            fcheck[nx][ny] = true;
                            map[nx][ny] = '*';
                            q.push(make_tuple(nx, ny, 0));
                        }
                    }
                }
            }
 
            if (who == 1) {
 
                for (int i = 0; i < 4; i++) {
                    int nx = x + dx[i];
                    int ny = y + dy[i];
                    if (nx >= 0 && ny >= 0 && nx < n &&ny < m) {
                        if (pcheck[nx][ny] == false && map[nx][ny] == '.') {
                            pcheck[nx][ny] = true;
                            d[nx][ny] = d[x][y] + 1;
                            q.push(make_tuple(nx, ny, 1));
                        }
                    }
                }
            }
 
 
 
 
 
 
        }
 
        vector<int>ans;
 
 
        for (int i = 0; i < ext.size(); i++) {
            int x, y;
            x = ext[i].first;
            y = ext[i].second;
 
            if (d[x][y] != 0) {
                ans.push_back(d[x][y]);
            }
 
        }
        sort(ans.begin(), ans.end());
 
 
        if (n == 1 && m == 1 || onestepout ==true) {
            cout << 1 << endl;
 
        }
        else{
            if (ans.empty()) {
                cout << "IMPOSSIBLE" << endl;
            }
            else {
                cout << ans[0+ 1 << endl;
            }
 
        }
 
        while (!q.empty()) {
            q.pop();
        }
 
 
    }
 
}
cs





'BOJ' 카테고리의 다른 글

백준 9372 / 상근이의 여행  (0) 2019.01.09
백준 1939 / 중량제한  (0) 2019.01.09
백준 1600 / 말이 되고픈 원숭이  (0) 2019.01.08
백준 1967 / 트리의 지름  (0) 2019.01.07
백준 2146 / 다리 만들기  (0) 2019.01.05