Advertisement
Josif_tepe

Untitled

Oct 30th, 2024
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 2.75 KB | None | 0 0
  1. #include <iostream>
  2. #include <queue>
  3. #include <vector>
  4. using namespace std;
  5. const int maxn = 1005;
  6. char mat[maxn][maxn];
  7. int n, m;
  8.  
  9. int main() {
  10.     cin >> 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.     queue<int> q;
  29.     q.push(si);
  30.     q.push(sj);
  31.     q.push(0);
  32.     vector<vector<int>> dist_S(n, vector<int>(m, -1));
  33.     vector<vector<bool>> visited(n, vector<bool>(m, false));
  34.     int di[] = {-1, 1, 0, 0};
  35.     int dj[] = {0, 0, -1, 1};
  36.    
  37.     visited[si][sj] = true;
  38.     while(!q.empty()) {
  39.         int ci = q.front();
  40.         q.pop();
  41.         int cj = q.front();
  42.         q.pop();
  43.         int d = q.front();
  44.         q.pop();
  45.        
  46.         if(ci == ei and cj == ej) {
  47.             cout << d << endl;
  48.             return 0;
  49.         }
  50.        
  51.         if(mat[ci][cj] == '#') {
  52.             dist_S[ci][cj] = d;
  53.             continue;
  54.         }
  55.        
  56.         for(int k = 0; k < 4; k++) {
  57.             int ti = ci + di[k];
  58.             int tj = cj + dj[k];
  59.            
  60.             if(ti >= 0 and ti < n and tj >= 0 and tj < m and !visited[ti][tj]) {
  61.                 q.push(ti);
  62.                 q.push(tj);
  63.                 q.push(d + 1);
  64.                 visited[ti][tj] = true;
  65.             }
  66.         }
  67.     }
  68.    
  69.     q.push(ei);
  70.     q.push(ej);
  71.     q.push(0);
  72.     vector<vector<int>> dist_E(n, vector<int>(m, -1));
  73.    
  74.     for(int i =0 ; i < n; i++) {
  75.         for(int j = 0; j < m; j++) {
  76.             visited[i][j] = false;
  77.         }
  78.     }
  79.     while(!q.empty()) {
  80.         int ci = q.front();
  81.         q.pop();
  82.         int cj = q.front();
  83.         q.pop();
  84.         int d = q.front();
  85.         q.pop();
  86.        
  87.         if(mat[ci][cj] == '#') {
  88.             dist_E[ci][cj] = d;
  89.             continue;
  90.         }
  91.        
  92.         for(int k = 0; k < 4; k++) {
  93.             int ti = ci + di[k];
  94.             int tj = cj + dj[k];
  95.            
  96.             if(ti >= 0 and ti < n and tj >= 0 and tj < m and !visited[ti][tj]) {
  97.                 q.push(ti);
  98.                 q.push(tj);
  99.                 q.push(d + 1);
  100.                 visited[ti][tj] = true;
  101.             }
  102.         }
  103.     }
  104.    
  105.     int res = -1;
  106.     for(int i = 0; i < n; i++) {
  107.         for(int j = 0; j < m; j++) {
  108.             if(mat[i][j] == '#' and dist_S[i][j] != -1 and dist_E[i][j] != -1) {
  109.                 res = max(res, dist_S[i][j] + dist_E[i][j]);
  110.             }
  111.         }
  112.     }
  113.     cout << res << endl;
  114.     return 0;
  115. }
  116.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement