Advertisement
Josif_tepe

Untitled

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