Advertisement
Josif_tepe

Untitled

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