Advertisement
Josif_tepe

Untitled

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