Logo HelloWorld信息学奥赛题库

少儿编程

时间限制:1 s 空间限制:256 MB

#1695. [USACO09HOL]假期绘画Holiday Painting

统计

题目描述

To show their spirit for the holidays, the cows would like to paint a picture! Their picture will be represented as an R x C (1 <= R <= 50,000; 1 <= C <= 15) grid of unit squares, each of which is either 0 or 1. The grid rows are conveniently numbered 1..R; the columns are numbered 1..C.
Being pressed for time, the cows have asked their neighbors north of the border for help. Under the very helpful supervision of Canmuu the moose, they constructed a machine to throw paint at the picture in entire buckets! Beginning with all 0's in the picture grid, the machine splashes a certain paint color (either 0 or 1) over a
rectangle in the grid. In particular, Canmuu suggested that they perform Q (1 <= Q <= 10,000) operations; operation i consists of five integers R1_i, R2_i, C1_i, C2_i, and X_i (1 <= R1_i <= R2_i <= R; 1 <= C1_i <= C2_i <= C; 0 <= X_i <= 1), meaning that the cows will paint each unit square with a row index between R1_i and R2_i, inclusive, and a column index between C1_i and C2_i, inclusive, with color X_i.
However, painting a picture like this is quite prone to mistakes. So Canmuu has enlisted you to determine, after each operation, the number of unit squares in the grid which are the correct color.
MEMORY LIMIT: 64 MB
TIME LIMIT: 1.5 seconds
[USACO09HOL]假期绘画Holiday Painting
为了表达假日的激情,奶牛们要画一幅巨大的画.画布可以分成R*C个方格,从上到下编为1到R行,从左到右编为1到C列.作画的颜色有两种,白色(用0)或者黑色(用1表).
由于时间紧迫,奶牛们不得不请教北面的邻居,卡门.卡门送给她们一台机器,一次操作只输入5个参数R1_i, R2_i, C1_i, C2_i, and X_i (1 <= R1_i <= R2_i <= R; 1 <= C1_i <= C2_i <= C; 0 <= X_i <= 1),
把R1行到行R2,列C1到列C2的一个大长方形涂成色.在所有操作还未进行的时候,画 布是白色的.
奶牛们一共要进行Q次操作.因为这样的画法总要出些差错,所以奶牛们想 请你算算,每一次操作过后,一共有多少个方格与她们的目标画里对应的方格是同色的.

输入格式:

Line 1: Three space-separated integers: R, C, and Q
Lines 2..R+1: Line i+1 contains C characters, each '0' or '1', denoting the i-th row of the grid in the obvious way.
Lines R+2..R+Q+1: Line R+i+1 contains five space-separated integers representing a paint operation: R1_i, R2_i, C1_i, C2_i, and X_i

输出格式:

Lines 1..Q: On line i+1, print a single integer representing the number of matching unit squares after the i-th operation.

输入样例#1:

17 15 10 
111111101111111 
111111000111111 
111110000011111 
111100000001111 
111000000000111 
111100000001111 
111000000000111 
110000000000011 
111000000000111 
110000000000011 
100000000000001 
110000000000011 
100000000000001 
000000000000000 
111111000111111 
111111000111111 
111111000111111 
5 8 2 14 1 
8 17 3 7 1 
4 5 10 15 0 
7 16 12 14 1 
2 17 13 14 0 
2 6 2 3 1 
13 14 4 8 1 
3 6 6 7 1 
1 16 10 11 0 
7 16 10 10 0 

输出样例#1:

113 
94 
95 
91 
87 
93 
91 
87 
93 
93