Igor In the Museum
Posted kasenbob
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Igor In the Museum相关的知识,希望对你有一定的参考价值。
题目链接:Igor In the Museum
思路:
先对可以通行的格子做一次搜索,搜出通过该格子以及与这个格子联通的可通行道路上一共能看多少幅画,保存状态后,对于询问可以直接得知答案,不用对每次询问都搜索一次。
代码:
#include <cstdio> #include <cstring> #define maxn 1001 int id, ans; int n, m; char G[maxn][maxn]; int v[maxn][maxn], r[maxn*maxn]; int ac[4][2]={0, 1, 0, -1, -1, 0, 1, 0}; void dfs(int x, int y) { v[x][y]=id; for(int i=0; i<4; i++) { int nx=x+ac[i][0]; int ny=y+ac[i][1]; if(nx>0&&nx<=n&&ny>0&&ny<=m&&!v[nx][ny]) { if(G[nx][ny]==‘*‘) ans++; else dfs(nx, ny); } } } int main() { int k; while(scanf("%d%d%d", &n, &m, &k)!=EOF) { for(int i=1; i<=n; i++) scanf("%s", G[i]+1); memset(v, 0, sizeof(v)); id=0; for(int i=1; i<=n; i++) { for(int j=1; j<=m; j++) { if(G[i][j]==‘.‘&&!v[i][j]) { ans=0; id++; dfs(i, j); r[id]=ans; } } } while(k--) { int x, y; scanf("%d%d", &x, &y); printf("%d\n", r[v[x][y]]); } } return 0; }
以上是关于Igor In the Museum的主要内容,如果未能解决你的问题,请参考以下文章
CodeForces 731A Night at the Museum
CodeForces 731A Night at the Museum (水题)
What's the difference between @Component, @Repository & @Service annotations in Spring?(代码片段
maven web项目的web.xml报错The markup in the document following the root element must be well-formed.(代码片段
[CareerCup] Guards in a museum 博物馆的警卫
detectron2报AttributeError: Attribute ‘evaluator_type‘ does not exist in the metadata of dataset(代码片段