博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[CodeForces598D]Igor In the Museum
阅读量:5079 次
发布时间:2019-06-12

本文共 2960 字,大约阅读时间需要 9 分钟。

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
---
Print k integers — the maximum number of pictures, that Igor can see if he starts in corresponding position.
Sample Input
---
5 6 3
******
...
*
****
....
******
2 2
2 5
4 3


4 4 1

*
..
.
****
3 2
Sample Output
---
6
4
10


8

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

#include
#include
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\n",cnt[x][y]);} return 0;}

转载于:https://www.cnblogs.com/ljzalc1022/p/8798693.html

你可能感兴趣的文章
C# Async与Await的使用
查看>>
Mysql性能调优
查看>>
iOS基础-UIKit框架-多控制器管理-实例:qq界面框架
查看>>
poj1611 简单并查集
查看>>
Ubuntu 14.04下安装CUDA8.0
查看>>
跨平台开发 -- C# 使用 C/C++ 生成的动态链接库
查看>>
C# BS消息推送 SignalR介绍(一)
查看>>
WPF星空效果
查看>>
WPF Layout 系统概述——Arrange
查看>>
PIGOSS
查看>>
软件目录结构规范
查看>>
解决 No Entity Framework provider found for the ADO.NET provider
查看>>
设置虚拟机虚拟机中fedora上网配置-bridge连接方式(图解)
查看>>
ES6内置方法find 和 filter的区别在哪
查看>>
Android实现 ScrollView + ListView无滚动条滚动
查看>>
UVA 11082 Matrix Decompressing 矩阵解压(最大流,经典)
查看>>
硬件笔记之Thinkpad T470P更换2K屏幕
查看>>
蓝桥杯-分小组-java
查看>>
Android Toast
查看>>
JAVA面试常见问题之Redis篇
查看>>