Advertisement
Josif_tepe

Untitled

Sep 30th, 2024
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.93 KB | None | 0 0
  1. #include <iostream>
  2. #include <vector>
  3. #include <queue>
  4. using namespace std;
  5.  
  6. int main() {
  7.     ios_base::sync_with_stdio(false);
  8.     int n, m;
  9.     cin >> n >> m;
  10.    
  11.     char mat[n][m];
  12.     int si, sj;
  13.     int ei, ej;
  14.     for(int i = 0; i < n; i++) {
  15.         for(int j = 0; j < m; j++) {
  16.             cin >> mat[i][j];
  17.            
  18.             if(mat[i][j] == 'S') {
  19.                 si = i;
  20.                 sj = j;
  21.             }
  22.             if(mat[i][j] == 'E') {
  23.                 ei = i;
  24.                 ej = j;
  25.             }
  26.         }
  27.     }
  28.    
  29.     vector<vector<bool>> visited(n, vector<bool>(m, false));
  30.     visited[si][sj] = true;
  31.    
  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.         if(ci + 1 < n and mat[ci + 1][cj] != '#' and !visited[ci + 1][cj]) {
  50.             q.push(ci + 1);
  51.             q.push(cj);
  52.             q.push(dist + 1);
  53.             visited[ci + 1][cj] = true;
  54.         }
  55.        
  56.         if(ci - 1 >= 0 and mat[ci - 1][cj] != '#' and !visited[ci - 1][cj]) {
  57.             q.push(ci - 1);
  58.             q.push(cj);
  59.             q.push(dist + 1);
  60.             visited[ci - 1][cj] = true;
  61.         }
  62.         if(cj + 1 < m and mat[ci][cj + 1] != '#' and !visited[ci][cj + 1]) {
  63.             q.push(ci);
  64.             q.push(cj + 1);
  65.             q.push(dist + 1);
  66.             visited[ci][cj + 1] = true;
  67.         }
  68.         if(cj - 1 >= 0 and mat[ci][cj - 1] != '#' and !visited[ci][cj - 1]) {
  69.             q.push(ci);
  70.             q.push(cj - 1);
  71.             q.push(dist + 1);
  72.             visited[ci][cj - 1] = true;
  73.         }
  74.        
  75.     }
  76.    
  77.    
  78.    
  79.    
  80.     return 0;
  81. }
  82.  
  83. /**
  84.  
  85.  
  86.  
  87.  .**/
  88.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement