codeforces 611C New Year and Domino DP预处理+部分和思想

本文深入探讨了游戏开发领域的核心技术,包括游戏引擎、动画、3D空间视频等关键概念及其实现方法,旨在帮助开发者提升游戏开发技能。

题目如下:

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 numbered 1 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 r1i and 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


思路:很明显,这道题100000的查询量决定了这题需要预处理,用DP解决从(1,1)到(i,j)方块中总共符合条件的位置数量。

DP方程:f[i][j] = f[i][j-1]+f[i-1][j]-f[i-1][j-1]+新增(i>0,j>0); i=0/j=0时特殊处理。

然后需要用到部分和的思想(因为题目要求从r1,c1到r2,c2),我觉得也很明显,但有一些边界值处理上的问题。

最简单的一个公式与DP公式差不多:ans = f[r2][c2] - f[r2][c1-1] - f[r1-1][c2] + f[r1-1][c1-1]

但要注意到r1和c1为0的情况,还要考虑两块拼接在一起时跨越两块的个数。

即 完整的公式应该是 ans = f[r2][c2] - f[r2][c1-1] - f[r1-1][c2] + f[r1-1][c1-1] - 跨越两块的个数。


代码如下:

#include <iostream>

using namespace std;


const int maxn = 508;


int h,w,q;

string s[maxn];

int f[maxn][maxn];


void do_it(){

    f[0][0] = 0;

    for (int i=1; i<h; i++) {

        if(s[i][0] == '.' && s[i-1][0] == '.') f[i][0] = f[i-1][0]+1;

        else f[i][0] = f[i-1][0];

    }

    for (int i=1; i<w; i++) {

        if(s[0][i] == '.' && s[0][i-1] == '.') f[0][i] = f[0][i-1]+1;

        else f[0][i] = f[0][i-1];

    }

    for (int i=1; i<h; i++) {//以上是边界值的确定

        for (int j=1; j<w; j++) {

            f[i][j] = f[i-1][j]+f[i][j-1]-f[i-1][j-1];

            if(s[i][j] == '.' && s[i-1][j] == '.') f[i][j]++;//新增的

            if(s[i][j] == '.' && s[i][j-1] == '.') f[i][j]++;

        }

    }

}


int main(int argc, const char * argv[]) {

    cin >> h >> w;

    for (int i=0; i<h; i++) {

        cin >> s[i];

    }

    do_it();

    cin >> q;

    for (int i=0; i<q; i++) {

        int r1,c1,r2,c2;

        cin >> r1 >> c1 >> r2 >> c2;

        int ans = f[r2-1][c2-1];

        if(r1>1){//考虑 r1 = 0 特殊情况

            ans -= f[r1-2][c2-1];

            for (int j = c1-1; j<c2; j++) {//考虑跨越边界的情况

                if(s[r1-1][j]=='.' && s[r1-2][j] == '.') ans--;

            }

        }

        if(c1>1){

            ans -= f[r2-1][c1-2];

            for (int j = r1-1; j<r2; j++) {

                if(s[j][c1-1]=='.' && s[j][c1-2] == '.') ans--;

            }

        }

        if(r1>1&&c1>1) ans += f[r1-2][c1-2];

        cout << ans << endl;

    }

    return 0;

}


内容概要:本文详细介绍了“秒杀商城”微服务架构的设计与实战全过程,涵盖系统从需求分析、服务拆分、技术选型到核心功能开发、分布式事务处理、容器化部署及监控链路追踪的完整流程。重点解决了高并发场景下的超卖问题,采用Redis预减库存、消息队列削峰、数据库乐观锁等手段保障数据一致性,并通过Nacos实现服务注册发现与配置管理,利用Seata处理跨服务分布式事务,结合RabbitMQ实现异步下单,提升系统吞吐能力。同时,项目支持Docker Compose快速部署Kubernetes生产级编排,集成Sleuth+Zipkin链路追踪与Prometheus+Grafana监控体系,构建可观测性强的微服务系统。; 适合人群:具备Java基础Spring Boot开发经验,熟悉微服务基本概念的中高级研发人员,尤其是希望深入理解高并发系统设计、分布式事务、服务治理等核心技术的开发者;适合工作2-5年、有志于转型微服务或提升架构能力的工程师; 使用场景及目标:①学习如何基于Spring Cloud Alibaba构建完整的微服务项目;②掌握秒杀场景下高并发、超卖控制、异步化、削峰填谷等关键技术方案;③实践分布式事务(Seata)、服务熔断降级、链路追踪、统一配置中心等企业级中间件的应用;④完成从本地开发到容器化部署的全流程落地; 阅读建议:建议按照文档提供的七个阶段循序渐进地动手实践,重点关注秒杀流程设计、服务间通信机制、分布式事务实现系统性能优化部分,结合代码调试与监控工具深入理解各组件协作原理,真正掌握高并发微服务系统的构建能力。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值