Advertisement
Josif_tepe

Untitled

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