当前位置:   article > 正文

AcWing 2060. 奶牛选美_acwing奶牛选美

acwing奶牛选美

在这里插入图片描述

思路:求2个联通所有点的曼哈顿距离的最小值

代码:

#include <iostream>
#include <cstring>
#include <algorithm>
#include <vector>

using namespace std;
const int N = 55;
#define x first
#define y second
typedef pair<int, int> PII;

char g[N][N];
vector<PII> points[2];
int dx[4] = {-1, 0, 1, 0}, dy[4] = {0, 1, 0, -1};
int n,m;

void dfs(int x,int y,int k){
    g[x][y]='.';
    points[k].push_back({x,y});
    
    for(int i=0;i<4;i++){
        int a=x+dx[i];
        int b=y+dy[i];
        if(a<0||a>=n||b<0||b>=m||g[a][b]!='X') continue;
        dfs(a,b,k);
    }    
    
}
int main()
{
    
    cin>>n>>m;
    for(int i=0;i<n;i++) cin>>g[i];
    
    for(int i=0,k=0;i<n;i++)
        for(int j=0;j<m;j++)
            if(g[i][j]=='X'){
                dfs(i,j,k);
                k++;
            }
                
    int res=1e8;
    for(auto& a:points[0])
        for(auto& b:points[1])
            res=min(res,abs(a.x-b.x)+abs(a.y-b.y)-1);
            
    cout<<res<<endl;
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/AllinToyou/article/detail/415838
推荐阅读