CF1928F.Digital Patterns

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Anya is engaged in needlework. Today she decided to knit a scarf from semi-transparent threads. Each thread is characterized by a single integer — the transparency coefficient.

The scarf is made according to the following scheme: horizontal threads with transparency coefficients a1,a2,,ana_1, a_2, \ldots, a_n and vertical threads with transparency coefficients b1,b2,,bmb_1, b_2, \ldots, b_m are selected. Then they are interwoven as shown in the picture below, forming a piece of fabric of size n×mn \times m , consisting of exactly nmnm nodes:

Example of a piece of fabric for n=m=4n = m = 4 .After the interweaving tightens and there are no gaps between the threads, each node formed by a horizontal thread with number ii and a vertical thread with number jj will turn into a cell, which we will denote as (i,j)(i, j) . Cell (i,j)(i, j) will have a transparency coefficient of ai+bja_i + b_j .

The interestingness of the resulting scarf will be the number of its sub-squares ^{\dagger} in which there are no pairs of neighboring ^{\dagger \dagger} cells with the same transparency coefficients.

Anya has not yet decided which threads to use for the scarf, so you will also be given qq queries to increase/decrease the coefficients for the threads on some ranges. After each query of which you need to output the interestingness of the resulting scarf.

^{\dagger} A sub-square of a piece of fabric is defined as the set of all its cells (i,j)(i, j) , such that x0ix0+dx_0 \le i \le x_0 + d and y0jy0+dy_0 \le j \le y_0 + d for some integers x0x_0 , y0y_0 , and dd ( 1x0nd1 \le x_0 \le n - d , 1y0md1 \le y_0 \le m - d , d0d \ge 0 ).

^{\dagger \dagger} . Cells (i1,j1)(i_1, j_1) and (i2,j2)(i_2, j_2) are neighboring if and only if i1i2+j1j2=1|i_1 - i_2| + |j_1 - j_2| = 1 .

输入格式

The first line contains three integers nn , mm , and qq ( 1n,m31051 \le n, m \le 3 \cdot 10^5 , 0q31050 \le q \le 3 \cdot 10^5 ) — the number of horizontal threads, the number of vertical threads, and the number of change requests.

The second line contains nn integers a1,a2,,ana_1, a_2, \ldots, a_n ( 109ai109-10^9 \le a_i \le 10^9 ) — the transparency coefficients for the horizontal threads, with the threads numbered from top to bottom.

The third line contains mm integers b1,b2,,bmb_1, b_2, \ldots, b_m ( 109bi109-10^9 \le b_i \le 10^9 ) — the transparency coefficients for the vertical threads, with the threads numbered from left to right.

The next qq lines specify the change requests. Each request is described by a quadruple of integers tt , ll , rr , and xx ( 1t21 \le t \le 2 , lrl \le r , 109x109-10^9 \le x \le 10^9 ). Depending on the parameter tt in the request, the following actions are required:

  • t=1t=1 . The transparency coefficients for the horizontal threads in the range [l,r][l, r] are increased by xx (in other words, for all integers lirl \le i \le r , the value of aia_i is increased by xx );
  • t=2t=2 . The transparency coefficients for the vertical threads in the range [l,r][l, r] are increased by xx (in other words, for all integers lirl \le i \le r , the value of bib_i is increased by xx ).

输出格式

Output (q+1)(q+1) lines. In the (i+1)(i + 1) -th line ( 0iq0 \le i \le q ), output a single integer — the interestingness of the scarf after applying the first ii requests.

输入输出样例

  • 输入#1

    4 4 0
    1 1 2 3
    1 2 2 3

    输出#1

    20
  • 输入#2

    3 3 2
    1 1 1
    2 2 8
    1 2 3 1
    2 2 3 -6

    输出#2

    9
    10
    11
  • 输入#3

    3 2 2
    -1000000000 0 1000000000
    -1000000000 1000000000
    1 1 1 1000000000
    2 2 2 -1000000000

    输出#3

    8
    7
    7

说明/提示

In the first example, the transparency coefficients of the cells in the resulting plate are as follows:

2334233434454556Then there are the following sub-squares that do not contain two neighboring cells with the same transparency coefficient:

  • Each of the 1616 cells separately;
  • A sub-square with the upper left corner at cell (3,1)(3, 1) and the lower right corner at cell (4,2)(4, 2) ;
  • A sub-square with the upper left corner at cell (2,3)(2, 3) and the lower right corner at cell (3,4)(3, 4) ;
  • A sub-square with the upper left corner at cell (2,1)(2, 1) and the lower right corner at cell (3,2)(3, 2) ;
  • A sub-square with the upper left corner at cell (3,3)(3, 3) and the lower right corner at cell (4,4)(4, 4) .

In the second example, after the first query, the transparency coefficients of the horizontal threads are [1,2,2][1, 2, 2] . After the second query, the transparency coefficients of the vertical threads are [2,4,2][2, -4, 2] .

首页