Advertisement
Josif_tepe

Untitled

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