ZOJ 3781 Paint the Grid Reloaded 连通块

LINK:http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemCode=3781

 

题意:n*m只由OX组成的矩阵,可以选择某一连通块变成另一个字符,问整个矩阵变成相同的最小次数

思路:对所有连通块编号,根据是否与其他联通块相连建边,最后得到图后枚举以某起点(代表某连通块)所能到的最大距离求它们的最小值即可。

关键还是在于模型的转换,这方面我好像有点欠缺orz

 

/** @Date    : 2017-03-30-15.09
  * @Author  : Lweleth (SoungEarlf@gmail.com)
  * @Link    : https://github.com/
  * @Version :
  */
#include<bits/stdc++.h>
#define LL long long
#define PII pair
#define MP(x, y) make_pair((x),(y))
#define fi first
#define se second
#define PB(x) push_back((x))
#define MMG(x) memset((x), -1,sizeof(x))
#define MMF(x) memset((x),0,sizeof(x))
#define MMI(x) memset((x), INF, sizeof(x))
using namespace std;

const int INF = 0x3f3f3f3f;
const int N = 1e5+20;
const double eps = 1e-8;


int dir[4][2] = {0,1,0,-1,1,0,-1,0};
char mp[50][50];
bool vis[50][50];
int vt[50][50];//num
bool mr[2000][2000];
int dic[2000];

vectoredg[2000];

int cnt;
int n, m;
void dfs(int x, int y, char k)
{
    if(vis[x][y])
    {
        if(mp[x][y] != k && vt[x][y] != -1 && !mr[vt[x][y]][cnt])
        {
            mr[vt[x][y]][cnt] = 1;
            mr[cnt][vt[x][y]] = 1;

            edg[cnt].PB(vt[x][y]);
            edg[vt[x][y]].PB(cnt);
        }
        return ;
    }
    if(mp[x][y] == k)
    {
        vis[x][y] = 1;
        vt[x][y] = cnt;
        for(int i = 0; i < 4; i++)
        {
            int a = x + dir[i][0];
            int b = y + dir[i][1];
            if(a > 0 && b > 0 && a <= n && b <= m)
                dfs(a, b, k);
        }
    }
}

void spfa(int x)
{
    bool e[2000] = {0};
    MMI(dic);
    queue q;
    e[x] = 1;
    dic[x] = 0;
    q.push(x);
    while(!q.empty())
    {
        int nw = q.front();
        q.pop();
        e[nw] = 0;
        for(int i = 0; i < edg[nw].size(); i++)
        {
            int np = edg[nw][i];
            int ds = 1 + dic[nw];
            if(dic[np] > ds)
            {
                dic[np] = ds;
                if(!e[np])
                    e[np] = 1, q.push(np);
            }
        }
    }
}
int main()
{
    int T;
    cin >> T;
    while(T--)
    {
        MMF(vis);
        MMF(vt);

        scanf("%d%d", &n, &m);
        for(int i = n*m + 1; i >= 0; i--)
            edg[i].clear(), MMF(mr[i]);
        getchar();
        for(int i = 1; i <= n; i++)
        {
            for(int j = 1; j <= m; j++)
            {
                scanf("%c", &mp[i][j]);
            }
            getchar();
        }

        /*for(int i = 1; i <= n; i++)
        {
            for(int j = 1; j <= m; j++)
                printf("%c", mp[i][j]);
            printf("\n");
        }*/
        cnt = 0;
        for(int i = 1; i <= n; i++)
        {
            for(int j = 1; j <= m; j++)
            {
                if(!vis[i][j])
                {
                    dfs(i, j, mp[i][j]);
                    cnt++;
                }
            }
        }
        int ans = INF;
        for(int i = 0; i < cnt; i++)
        {
            spfa(i);
            int ma = 0;
            for(int j = 0; j < cnt; j++)
                ma = max(ma, dic[j]);
            ans = min(ans, ma);
        }
        printf("%d\n", ans);
    }
    return 0;
}
/*
1
4 4
OXOX
XOXO
OXOX
XOXO
*/

转载于:https://www.cnblogs.com/Yumesenya/p/6648074.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
毕业设计,基于SpringBoot+Vue+MySQL开发的体育馆管理系统,源码+数据库+毕业论文+视频演示 现代经济快节奏发展以及不断完善升级的信息化技术,让传统数据信息的管理升级为软件存储,归纳,集中处理数据信息的管理方式。本体育馆管理系统就是在这样的大环境下诞生,其可以帮助管理者在短时间内处理完毕庞大的数据信息,使用这种软件工具可以帮助管理人员提高事务处理效率,达到事半功倍的效果。此体育馆管理系统利用当下成熟完善的SpringBoot框架,使用跨平台的可开发大型商业网站的Java语言,以及最受欢迎的RDBMS应用软件之一的Mysql数据库进行程序开发。实现了用户在线选择试题并完成答题,在线查看考核分数。管理员管理收货地址管理、购物车管理、场地管理、场地订单管理、字典管理、赛事管理、赛事收藏管理、赛事评价管理、赛事订单管理、商品管理、商品收藏管理、商品评价管理、商品订单管理、用户管理、管理员管理等功能。体育馆管理系统的开发根据操作人员需要设计的界面简洁美观,在功能模布局上跟同类型网站保持一致,程序在实现基本要求功能时,也为数据信息面临的安全问题提供了一些实用的解决方案。可以说该程序在帮助管理者高效率地处理工作事务的同时,也实现了数据信息的整体化,规范化与自动化。 关键词:体育馆管理系统;SpringBoot框架;Mysql;自动化
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值