Advertisement
Josif_tepe

Untitled

Oct 30th, 2024
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.48 KB | None | 0 0
  1. #include <iostream>
  2. #include <queue>
  3. #include <vector>
  4. using namespace std;
  5. const int maxn = 105;
  6. char mat[maxn][maxn];
  7. int main() {
  8.     int n, m;
  9.     cin >> n >> m;
  10.    
  11.     int si, sj;
  12.     int ei, ej;
  13.     for(int i = 0; i < n; i++) {
  14.         for(int j = 0; j < m; j++) {
  15.             cin >> mat[i][j];
  16.            
  17.             if(mat[i][j] == 'S') {
  18.                 si = i;
  19.                 sj = j;
  20.             }
  21.             if(mat[i][j] == 'E') {
  22.                 ei = i;
  23.                 ej = j;
  24.             }
  25.         }
  26.     }
  27.    
  28.     vector<vector<bool>> visited(n, vector<bool>(m, false));
  29.     visited[si][sj] = true;
  30.     int di[] = {-1, 1, 0, 0};
  31.     int dj[] = {0, 0, -1, 1};
  32.     queue<int> q;
  33.     q.push(si);
  34.     q.push(sj);
  35.     q.push(0);
  36.    
  37.     while(!q.empty()) {
  38.         int ci = q.front();
  39.         q.pop();
  40.         int cj = q.front();
  41.         q.pop();
  42.         int dist = q.front();
  43.         q.pop();
  44.        
  45.         if(ci == ei and cj == ej) {
  46.             cout << dist << endl;
  47.             break;
  48.         }
  49.        
  50.         for(int k = 0; k < 4; k++) {
  51.             int ti = ci + di[k];
  52.             int tj = cj + dj[k];
  53.            
  54.             if(ti >= 0 and ti < n and tj >= 0 and tj < m and !visited[ti][tj] and mat[ti][tj] != '#') {
  55.                 q.push(ti);
  56.                 q.push(tj);
  57.                 q.push(dist + 1);
  58.                
  59.                 visited[ti][tj] = true;
  60.             }
  61.         }
  62.        
  63.     }
  64.     return 0;
  65. }
  66.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement