CodeForces 611C New Year and Domino【预处理】

C. New Year and Domino
time limit per test
3 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

They say "years are like dominoes, tumbling one after the other". But would a year fit into a grid? I don't think so.

Limak is a little polar bear who loves to play. He has recently got a rectangular grid with h rows and w columns. Each cell is a square, either empty (denoted by '.') or forbidden (denoted by '#'). Rows are numbered 1 through h from top to bottom. Columns are numbered1 through w from left to right.

Also, Limak has a single domino. He wants to put it somewhere in a grid. A domino will occupy exactly two adjacent cells, located either in one row or in one column. Both adjacent cells must be empty and must be inside a grid.

Limak needs more fun and thus he is going to consider some queries. In each query he chooses some rectangle and wonders, how many way are there to put a single domino inside of the chosen rectangle?

Input

The first line of the input contains two integers h and w (1 ≤ h, w ≤ 500) – the number of rows and the number of columns, respectively.

The next h lines describe a grid. Each line contains a string of the length w. Each character is either '.' or '#' — denoting an empty or forbidden cell, respectively.

The next line contains a single integer q (1 ≤ q ≤ 100 000) — the number of queries.

Each of the next q lines contains four integers r1ic1ir2ic2i (1 ≤ r1i ≤ r2i ≤ h, 1 ≤ c1i ≤ c2i ≤ w) — the i-th query. Numbers r1iand c1i denote the row and the column (respectively) of the upper left cell of the rectangle. Numbers r2i and c2i denote the row and the column (respectively) of the bottom right cell of the rectangle.

Output

Print q integers, i-th should be equal to the number of ways to put a single domino inside the i-th rectangle.

Sample test(s)
input
5 8
....#..#
.#......
##.#....
##..#.##
........
4
1 1 2 3
4 1 4 1
1 2 4 5
2 5 5 8
output
4
0
10
15
input
7 39
.......................................
.###..###..#..###.....###..###..#..###.
...#..#.#..#..#.........#..#.#..#..#...
.###..#.#..#..###.....###..#.#..#..###.
.#....#.#..#....#.....#....#.#..#..#.#.
.###..###..#..###.....###..###..#..###.
.......................................
6
1 1 3 20
2 10 6 30
2 10 7 30
2 2 7 7
1 7 7 7
1 8 7 8
output
53
89
120
23
0
2

那天卡B就没往下看,后来自己又做的,开始直接想dfs试了一下果然超时,然后就想到了二维树状数组里一点思想。。。


#include <iostream>
#include<cstdio>
#include<cstring>
#include<algorithm>
#define maxn 510
using namespace std;
char mazz[maxn][maxn];
bool vis[maxn][maxn];
int rec[maxn][maxn];
int rl,cl,rr,cr,sum;
int judge(int x,int y)
{
    if(x>rr||y>cr||x<rl||y<cl)
        return 0;
    return 1;
}
/*void dfs(int x,int y)
{
    if(judge(x+1,y))
    {
        if(mazz[x][y]=='.'&&mazz[x+1][y]=='.')
            sum++;
        if(!vis[x+1][y])
        {
            vis[x+1][y]=true;
            dfs(x+1,y);
        }
    }
    if(judge(x,y+1))
    {
        if(mazz[x][y]=='.'&&mazz[x][y+1]=='.')
            sum++;
        if(!vis[x][y+1])
        {
            vis[x][y+1]=true;
            dfs(x,y+1);
        }
    }
}*/
int main()
{
    int r,c,q;
    while(~scanf("%d%d",&r,&c))
    {
        for(int i=0;i<r;++i)
            scanf("%s",mazz[i]);
        rec[0][0]=0;
        for(int i=1;i<c;++i)
        {
            rec[0][i]=rec[0][i-1];
            if(mazz[0][i]=='.'&&mazz[0][i-1]=='.')
                rec[0][i]++;
        }
        for(int i=1;i<r;++i)
        {
            rec[i][0]=rec[i-1][0];
            if(mazz[i][0]=='.'&&mazz[i-1][0]=='.')
                rec[i][0]++;
        }
        for(int i=1;i<r;++i)
        {
            for(int j=1;j<c;++j)
            {
                rec[i][j]=rec[i-1][j]+rec[i][j-1]-rec[i-1][j-1];
                if(mazz[i][j]=='.')
                {
                    if(mazz[i-1][j]=='.')
                        rec[i][j]++;
                    if(mazz[i][j-1]=='.')
                        rec[i][j]++;
                }
            }
        }
        scanf("%d",&q);
        while(q--)
        {
            scanf("%d%d%d%d",&rl,&cl,&rr,&cr);
            rl--,cl--,rr--,cr--;
            /*sum=0;
            memset(vis,false,sizeof(vis));
            vis[rl][cl]=true;
            dfs(rl,cl);*/
            int sum=rec[rr][cr]-rec[rl][cr]-rec[rr][cl]+rec[rl][cl];
            for(int i=cl;i<cr;++i)
            {
                if(mazz[rl][i]=='.'&&mazz[rl][i+1]=='.')
                    sum++;
            }
            for(int i=rl;i<rr;++i)
            {
                if(mazz[i][cl]=='.'&&mazz[i+1][cl]=='.')
                    sum++;
            }
            printf("%d\n",sum);
        }
    }
    return 0;
}


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值