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
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
#include <iostream>
#include <cstring>
#include <queue>
 
 
 
 
using namespace std;
 
 
#define BAEKJOON 1
 
 
#define MAX_R   1500
#define MAX_C   1500
 
 
short R,C;
 
 
short swan_x;
short swan_y;
 
short ice_qi=0;
queue<pair<shortshort> > ice_q[2];
 
 
short path_qi=0;
queue<pair<shortshort> > path_q[2];
 
 
 
 
char map[MAX_R][MAX_C];
char path_v[MAX_R][MAX_C];
 
 
const short dx[4= { -1100 };
const short dy[4= { 00-11 };
 
 
 
 #if BAEKJOON != 1
 
void print_map(void)
{
    for(int i=0; i < R; i++)
    {
        for(int j=0; j < C; j++)
        {
            cout << map[i][j];
        }
 
        cout << endl;
    }
 
    cout << endl;
}
 
 
void print_path_v()
{
    for(int i = 0; i < R; i++)
    {
        for(int j = 0; j < C; j++)
        {            
            cout << path_v[i][j];
        }
 
        cout << endl;
    }
        
    cout << endl;
}
 
#endif
 
 
void bfs_for_ice()
{
 
    while(!ice_q[ice_qi].empty())
    {
        auto crnt = ice_q[ice_qi].front();
        ice_q[ice_qi].pop();
 
        short y=crnt.first;
        short x=crnt.second;
 
        for (int i = 0; i < 4; i++)
        {
            int nx = x + dx[i];
            int ny = y + dy[i];
 
            
            if(ny >= 0 && ny < R && nx >= 0 && nx < C )
            {
                if(map[ny][nx] == 'X')
                {
                    map[ny][nx]='.';                    
                    ice_q[!ice_qi].push({ny,nx});
                }
            }                                
        }
    }
 
 
 
    ice_qi=!ice_qi;
}
 
 
 
bool bfs_for_path()
{
    while(!path_q[path_qi].empty())
    {
        auto crnt = path_q[path_qi].front();
        path_q[path_qi].pop();
 
        short y=crnt.first;
        short x=crnt.second;
 
        for (int i = 0; i < 4; i++)
        {
            short nx = x + dx[i];
            short ny = y + dy[i];
 
            
            if(ny >= 0 && ny < R && nx >= 0 && nx < C && path_v[ny][nx] == '.')
            {                
                if(map[ny][nx] == 'L')
                {                                
                    return true;
 
                }else if(map[ny][nx] == 'X')
                {                    
                    path_v[ny][nx]='#';
                    path_q[!path_qi].push({ny,nx});
 
                }else {
 
                    path_v[ny][nx]='#';
                    path_q[path_qi].push({ny,nx});
                }
            
            }                                
        }
    }
 
 
    path_qi=!path_qi;
 
    return false;
}
 
int main(int argc, char **argv)
{
 
 
    #if BAEKJOON == 1
 
        cin.tie(0)->sync_with_stdio(0);
        cin >> R >> C;    
 
    #else
 
 
        
    #endif
 
 
  
 
    
    memset(path_v,'.',sizeof(path_v));
 
 
 
   
 
    for(int i=0; i < R; i++)
    {
                
        #if BAEKJOON == 1            
 
            string temp;
            cin >> temp;
        
        #endif 
 
 
        for(int j=0; j < C; j++)
        {
            #if BAEKJOON == 1            
                map[i][j]=temp[j];
            #else                
                map[i][j]=map_str[i][j];
            #endif
 
        
            if(map[i][j] == 'L')
            {
                swan_x=j;
                swan_y=i;
                
            }
 
            if(map[i][j] != 'X')
            {                
                ice_q[ice_qi].push({i,j});                
            }
        }
    }
 
    
   
 
    path_q[path_qi].push({swan_y,swan_x});
    path_v[swan_y][swan_x]='!';
 
 
 
    for(int c=0;  ; c++)
    {      
        bool is_found=bfs_for_path();
        
         #if BAEKJOON != 1
            
            print_map();                            
            print_path_v();
    
        #endif
        
        
            
        if(is_found)
        {
            cout << c << endl;
            break;
        }
 
        bfs_for_ice();
              
    }
 
 
 
 
 
    return 0;
}
 
 
cs


사실 전에 시간없어서 포기한다고 글쓰고나서 성공함 ㅋ