CF1030F.Putting Boxes Together

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

There is an infinite line consisting of cells. There are nn boxes in some cells of this line. The ii -th box stands in the cell aia_i and has weight wiw_i . All aia_i are distinct, moreover, ai1<aia_{i - 1} < a_i holds for all valid ii .

You would like to put together some boxes. Putting together boxes with indices in the segment [l,r][l, r] means that you will move some of them in such a way that their positions will form some segment [x,x+(rl)][x, x + (r - l)] .

In one step you can move any box to a neighboring cell if it isn't occupied by another box (i.e. you can choose ii and change aia_i by 11 , all positions should remain distinct). You spend wiw_i units of energy moving the box ii by one cell. You can move any box any number of times, in arbitrary order.

Sometimes weights of some boxes change, so you have queries of two types:

  1. idid nwnw — weight widw_{id} of the box idid becomes nwnw .
  2. ll rr — you should compute the minimum total energy needed to put together boxes with indices in [l,r][l, r] . Since the answer can be rather big, print the remainder it gives when divided by 1000000007=109+71000\,000\,007 = 10^9 + 7 . Note that the boxes are not moved during the query, you only should compute the answer.

Note that you should minimize the answer, not its remainder modulo 109+710^9 + 7 . So if you have two possible answers 2109+132 \cdot 10^9 + 13 and 2109+142 \cdot 10^9 + 14 , you should choose the first one and print 109+610^9 + 6 , even though the remainder of the second answer is 00 .

输入格式

The first line contains two integers nn and qq ( 1n,q21051 \le n, q \le 2 \cdot 10^5 ) — the number of boxes and the number of queries.

The second line contains nn integers a1,a2,ana_1, a_2, \dots a_n ( 1ai1091 \le a_i \le 10^9 ) — the positions of the boxes. All aia_i are distinct, ai1<aia_{i - 1} < a_i holds for all valid ii .

The third line contains nn integers w1,w2,wnw_1, w_2, \dots w_n ( 1wi1091 \le w_i \le 10^9 ) — the initial weights of the boxes.

Next qq lines describe queries, one query per line.

Each query is described in a single line, containing two integers xx and yy . If x<0x < 0 , then this query is of the first type, where id=xid = -x , nw=ynw = y ( 1idn1 \le id \le n , 1nw1091 \le nw \le 10^9 ). If x>0x > 0 , then the query is of the second type, where l=xl = x and r=yr = y ( 1ljrjn1 \le l_j \le r_j \le n ). xx can not be equal to 00 .

输出格式

For each query of the second type print the answer on a separate line. Since answer can be large, print the remainder it gives when divided by 1000000007=109+71000\,000\,007 = 10^9 + 7 .

输入输出样例

  • 输入#1

    5 8
    1 2 6 7 10
    1 1 1 1 2
    1 1
    1 5
    1 3
    3 5
    -3 5
    -1 10
    1 4
    2 5
    

    输出#1

    0
    10
    3
    4
    18
    7
    

说明/提示

Let's go through queries of the example:

  1. 1 11\ 1 — there is only one box so we don't need to move anything.
  2. 1 51\ 5 — we can move boxes to segment [4,8][4, 8] : 114+125+166+177+2108=101 \cdot |1 - 4| + 1 \cdot |2 - 5| + 1 \cdot |6 - 6| + 1 \cdot |7 - 7| + 2 \cdot |10 - 8| = 10 .
  3. 1 31\ 3 — we can move boxes to segment [1,3][1, 3] .
  4. 3 53\ 5 — we can move boxes to segment [7,9][7, 9] .
  5. 3 5-3\ 5w3w_3 is changed from 11 to 55 .
  6. 1 10-1\ 10w1w_1 is changed from 11 to 1010 . The weights are now equal to w=[10,1,5,1,2]w = [10, 1, 5, 1, 2] .
  7. 1 41\ 4 — we can move boxes to segment [1,4][1, 4] .
  8. 2 52\ 5 — we can move boxes to segment [5,8][5, 8] .
首页