Advertisement
Josif_tepe

Untitled

Nov 10th, 2024
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 2.05 KB | None | 0 0
  1. #include <iostream>
  2. #include <vector>
  3. #include <queue>
  4. using namespace std;
  5.  
  6. int main() {
  7.     int n, m;
  8.     cin >> n >> m;
  9.    
  10.     char mat[n][m];
  11.    
  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.     queue<int> q;
  30.     q.push(si);
  31.     q.push(sj);
  32.     q.push(0);
  33.    
  34.     vector<vector<bool>> visited(n, vector<bool>(m, false));
  35.     visited[si][sj] = true;
  36.     while(!q.empty()) {
  37.         int ci = q.front();
  38.         q.pop();
  39.        
  40.         int cj = q.front();
  41.         q.pop();
  42.        
  43.         int distance = q.front();
  44.         q.pop();
  45.        
  46.         if(ci == ei and cj == ej) {
  47.             cout << "Najkratok pat iznesuva: " << distance << endl;
  48.             break;
  49.         }
  50.         cout << "{ci: " << ci << " " << ", cj: " << cj << ", " << distance << "}" << endl;
  51.         if(ci + 1 < n and mat[ci + 1][cj] != '#' and !visited[ci + 1][cj]) {
  52.             q.push(ci + 1);
  53.             q.push(cj);
  54.             q.push(distance + 1);
  55.             visited[ci + 1][cj] = true;
  56.         }
  57.         if(ci - 1 >= 0 and mat[ci - 1][cj] != '#' and !visited[ci - 1][cj]) {
  58.             q.push(ci - 1);
  59.             q.push(cj);
  60.             q.push(distance + 1);
  61.             visited[ci - 1][cj] = true;
  62.         }
  63.         if(cj + 1 < m and mat[ci][cj + 1] != '#' and !visited[ci][cj + 1]) {
  64.             q.push(ci);
  65.             q.push(cj + 1);
  66.             q.push(distance + 1);
  67.             visited[ci][cj + 1] = true;
  68.         }
  69.         if(cj - 1 >= 0 and mat[ci][cj - 1] != '#' and !visited[ci][cj - 1]) {
  70.             q.push(ci);
  71.             q.push(cj - 1);
  72.             q.push(distance + 1);
  73.             visited[ci][cj - 1] = true;
  74.         }
  75.        
  76.     }
  77.    
  78.    
  79.     return 0;
  80. }
  81.  
  82. /*
  83. 4 3
  84. S..
  85. .#.
  86. .#.
  87. E..
  88.  **/
  89.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement