Advertisement
Josif_tepe

Untitled

Oct 20th, 2024
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.86 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.    
  31.     queue<int> q;
  32.     q.push(si);
  33.     q.push(sj);
  34.     q.push(0);
  35.    
  36.     while(!q.empty()) {
  37.         int ci = q.front();
  38.         q.pop();
  39.         int cj = q.front();
  40.         q.pop();
  41.         int dist = q.front();
  42.         q.pop();
  43.        
  44.         if(ci == ei and cj == ej) {
  45.             cout << dist << endl;
  46.             break;
  47.         }
  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.         if(ci - 1 >= 0 and mat[ci - 1][cj] != '#' and !visited[ci - 1][cj]) {
  56.             q.push(ci - 1);
  57.             q.push(cj);
  58.             q.push(dist + 1);
  59.             visited[ci - 1][cj] = true;
  60.         }
  61.         if(cj + 1 < m and mat[ci][cj + 1] != '#' and !visited[ci][cj + 1]) {
  62.             q.push(ci);
  63.             q.push(cj + 1);
  64.             q.push(dist + 1);
  65.             visited[ci][cj + 1] = true;
  66.         }
  67.         if(cj - 1 >= 0 and mat[ci][cj - 1] != '#' and !visited[ci][cj - 1]) {
  68.             q.push(ci);
  69.             q.push(cj - 1);
  70.             q.push(dist + 1);
  71.             visited[ci][cj - 1] = true;
  72.         }
  73.     }
  74.     return 0;
  75. }
  76.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement