zoukankan      html  css  js  c++  java
  • [CodeForces598D]Igor In the Museum

    Description

    Igor is in the museum and he wants to see as many pictures as possible.

    Museum can be represented as a rectangular field of n × m cells. Each cell is either empty or impassable. Empty cells are marked with '.', impassable cells are marked with '*'. Every two adjacent cells of different types (one empty and one impassable) are divided by a wall containing one picture.

    At the beginning Igor is in some empty cell. At every moment he can move to any empty cell that share a side with the current one.

    For several starting positions you should calculate the maximum number of pictures that Igor can see. Igor is able to see the picture only if he is in the cell adjacent to the wall with this picture. Igor have a lot of time, so he will examine every picture he can see.
    Input

    First line of the input contains three integers n, m and k (3 ≤ n, m ≤ 1000, 1 ≤ k ≤ min(n·m, 100 000)) — the museum dimensions and the number of starting positions to process.

    Each of the next n lines contains m symbols '.', '*' — the description of the museum. It is guaranteed that all border cells are impassable, so Igor can't go out from the museum.

    Each of the last k lines contains two integers x and y (1 ≤ x ≤ n, 1 ≤ y ≤ m) — the row and the column of one of Igor's starting positions respectively. Rows are numbered from top to bottom, columns — from left to right. It is guaranteed that all starting positions are empty cells.
    Output

    5 6 3
    ******
    ...*
    ******
    ....
    ******
    2 2
    2 5
    4 3


    4 4 1
    ****
    ..
    .*
    ****
    3 2
    Sample Output

    6
    4
    10


    8
    题解

    对于每个空白块dfs统计出答案并染色

    #include<cstdio>
    #include<cstring>
    using namespace std;
    typedef long long ll;
    ll read()
    {
    	ll x=0,f=1;char ch=getchar();
    	while(ch<'0'||ch>'9'){if(ch=='-')f=-1;ch=getchar();}
    	while(ch>='0'&&ch<='9'){x=x*10+ch-'0';ch=getchar();}
    	return x*f;
    }
    const int dx[]={0,0,1,-1},dy[]={1,-1,0,0};
    char a[1005][1005];
    int ans,n,m,k,cnt[1005][1005],vis[1005][1005],tim;
    void dfs1(int x,int y)
    {
    	vis[x][y]=tim;
    	for(int i=0;i<4;i++)
    	{
    		int tx=x+dx[i],ty=y+dy[i];
    		if(!tx||!ty||tx>n||ty>m)continue;
    		if(vis[tx][ty]==tim)continue;
    		if(a[tx][ty]=='*'){ans++;continue;}
    		dfs1(tx,ty);
    	}
    }
    void dfs2(int x,int y,int c)
    {
    	cnt[x][y]=c;
    	for(int i=0;i<4;i++)
    	{
    		int tx=x+dx[i],ty=y+dy[i];
    		if(!tx||!ty||tx>n||ty>m)continue;
    		if(cnt[tx][ty]!=-1)continue;
    		if(a[tx][ty]=='*')continue;
    		dfs2(tx,ty,c);
    	}
    }
    int main()
    {
    	memset(cnt,-1,sizeof(cnt));
    	n=read(),m=read(),k=read();
    	for(int i=1;i<=n;i++)gets(a[i]+1);
    	for(int i=1;i<=n;i++)for(int j=1;j<=m;j++)if(a[i][j]=='.'&&cnt[i][j]==-1)
    	{
    		tim++;
    		ans=0;dfs1(i,j);
    		dfs2(i,j,ans);
    	}
    	for(int i=1;i<=k;i++){int x=read(),y=read();printf("%d
    ",cnt[x][y]);}
    	return 0;
    }
    
  • 相关阅读:
    手工去除 dll 和 exe 文件的数字签名
    针式PKM中级应用:文件的5S(归档整理删除)
    针式PKM初级应用:如何避免收集重复的资料?
    了解更多:什么是个人知识管理?
    如何选用知识管理软件?
    与阿朱聊个人知识管理:体系和方法论层面
    针式PKM初级应用:针式PKM每天应使用多少小时?
    战略人生
    针式PKM初级应用:针式PKM更适合管理什么样的文件
    Data, Information, and Knowledge Management Software "What software should I use?"
  • 原文地址:https://www.cnblogs.com/ljzalc1022/p/8798693.html
Copyright © 2011-2022 走看看