• 浙江理工2015.12校赛-F Landlocked


    Landlocked

    Time Limit: 5 Sec Memory Limit: 128 MB
    Submit: 288 Solved: 39
    Description

    Canada is not a landlocked country: the country touches at least one ocean (in fact, it touches three).

    There are 46 countries (including Bolivia and Mongolia, for example) which are landlocked. That is, they do not touch an ocean, but by going through one other country, an ocean can be reached. For example, a person in Mongolia can get to an ocean by passing through Russia.

    Liechtenstein and Uzbekistan are the only two countries in the world which are land-landlocked. That is, not only are they land-locked, but all countries which surround these two countries are land-locked countries. Thus, one would have to pass through at least two different countries when leaving Uzbekistan before arriving at an ocean.

    Your task is to determine how landlocked each country is on a given map. We say that a country is not landlocked (recorded as 0) if it touches water in any adjacent cell in either a horizontal, vertical, or diagonal direction. If a country is landlocked, you must calculate the minimum number of borders that one must cross in order to travel from the country to water. Each step of such a journey must be to a cell that is adjacent in either a horizontal, vertical, or diagonal direction. Crossing a border is defined as taking a step from a cell in one country to an adjacent cell in a different country.

    Note that countries may not be connected to themselves (as in a country formed of islands). In this case, the landlocked value for the country is the minimal of each connected region of the country.
    Input

    The first line contains N and M (1 ≤ N, M ≤ 1000).

    On each of the next N lines, there are M capital letters. Each country will be represented by a unique letter, with the exception that the letter W is reserved to indicate the water in the oceans or seas that will be used to determine the how landlocked each country is.
    Output

    The output consists of the country letter followed by a space, followed by the landlockedness for that particular country. Output should be in alphabetical order
    Sample Input

    7 10
    WWWWWCCDEW
    WWWWCCEEEW
    WTWWWCCCCW
    WWFFFFFFWW
    WWFAAAAFWW
    WWFABCAFFW
    WWFAAAAFWW

    Sample Output

    A 1
    B 2
    C 0
    D 1
    E 0
    F 0
    T 0

    采用从外到内的方式,由海洋到城市,进行BFS搜索,相同的城市进行DFS搜索。

    #include <iostream>
    #include <cstdio>
    #include <cstring>
    #include <cmath>
    #include <queue>
    #include <algorithm>
    #define LL long long
    
    using namespace std;
    
    const int INF = 0x3f3f3f3f;
    
    int Dir[][2]={{1, 0}, {-1, 0}, {0, 1}, {0, -1}, {1, 1}, {1, -1}, {-1, 1}, {-1, -1}};
    
    typedef struct node
    {
        int x,y,dis;
    }Node;
    
    char str[1100][1100];
    
    bool vis[1100][1100];
    
    int dis[1100][1100];
    
    int Dis[300];
    
    int n,m;
    
    queue<Node>Q;
    
    bool Ok(int x,int y)
    {
        if(x>=0&&x<n&&y>=0&&y<m&&!vis[x][y])
        {
            return true;
        }
        return false;
    }
    
    void dfs(int x,int y,int num)
    {
        int Fx,Fy;
        Node s;
      //  printf("%d %d
    ",x,y);
        for(int i=0;i<8;i++)
        {
            Fx=x+Dir[i][0];
            Fy=y+Dir[i][1];
            if(Ok(Fx,Fy))
            {
                if(str[Fx][Fy]==str[x][y])
                {
                    vis[x][y]=true;
                    s.x=Fx;
                    s.y=Fy;
                    s.dis=num;
                    Q.push(s);
                    dfs(Fx,Fy,num);
                }
            }
        }
    }
    
    void bfs(int x,int y,int num)
    {
        dis[x][y]=num;
    
        int Fx,Fy;
    
        Node s;
    
        for(int i=0;i<8;i++)
        {
            Fx=x+Dir[i][0];
    
            Fy=y+Dir[i][1];
    
            if(Ok(Fx,Fy))
            {
                vis[Fx][Fy]=true;
    
                if(str[Fx][Fy]!=str[x][y])
                {
                    s.x=Fx;
                    s.y=Fy;
                    s.dis=num+1;
                    Q.push(s);
                    dfs(Fx,Fy,num+1);
                }
            }
        }
    }
    
    int main()
    {
        Node s;
        while(~scanf("%d %d",&n,&m))
        {
            for(int i=0;i<n;i++)
            {
                scanf("%s",str[i]);
            }
            memset(vis,false,sizeof(vis));
    
            memset(dis,INF,sizeof(dis));
    
            memset(Dis,INF,sizeof(Dis));
    
            for(int i=0;i<n;i++)
            {
                for(int j=0;j<m;j++)
                {
                    if(str[i][j]=='W')
                    {
                        vis[i][j]=true;
    
                        bfs(i,j,-1);
                    }
                }
            }
            while(!Q.empty())
            {
                s=Q.front();
                Q.pop();
    
                bfs(s.x,s.y,s.dis);
            }
            for(int i=0;i<n;i++)
            {
                for(int j=0;j<m;j++)
                {
                    if(str[i][j]!='W')
    
                        Dis[(int)str[i][j]]=min(Dis[(int)str[i][j]],dis[i][j]);
                }
            }
    
            for(int i=0;i<300;i++)
            {
                if(Dis[i]!=INF)
                {
    
                    printf("%c %d
    ",i,Dis[i]);
    
                }
            }
        }
        return 0;
    }
    
  • 相关阅读:
    26. 60s快速定位服务器性能问题
    27. 性能测试总体流程
    18. Jmeter-取样器二
    17. Jmeter-取样器一
    15. Jmeter-配置元件二
    14. Jmeter-配置元件一
    13. Jmeter-定时器
    git 常用命令
    数据库常用操作
    【CSS】文字超出显示省略号&连续字符换行
  • 原文地址:https://www.cnblogs.com/juechen/p/5255899.html
Copyright © 2020-2023  润新知