CF1467D.Sum of Paths

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

There are nn cells, numbered 1,2,,n1,2,\dots, n from left to right. You have to place a robot at any cell initially. The robot must make exactly kk moves.

In one move, the robot must move one cell to the left or right, provided that it doesn't move out of bounds. In other words, if the robot was in the cell ii , it must move to either the cell i1i-1 or the cell i+1i+1 , as long as it lies between 11 and nn (endpoints inclusive). The cells, in the order they are visited (including the cell the robot is placed), together make a good path.

Each cell ii has a value aia_i associated with it. Let c0,c1,,ckc_0, c_1, \dots, c_k be the sequence of cells in a good path in the order they are visited ( c0c_0 is the cell robot is initially placed, c1c_1 is the cell where the robot is after its first move, and so on; more formally, cic_i is the cell that the robot is at after ii moves). Then the value of the path is calculated as ac0+ac1++acka_{c_0} + a_{c_1} + \dots + a_{c_k} .

Your task is to calculate the sum of values over all possible good paths. Since this number can be very large, output it modulo 109+710^9 + 7 . Two good paths are considered different if the starting cell differs or there exists an integer i[1,k]i \in [1, k] such that the current cell of the robot after exactly ii moves is different in those paths.

You must process qq updates to aa and print the updated sum each time. Each update changes the value of exactly one cell. See the input format and the sample input-output for more details.

输入格式

The first line of the input contains three space-separated integers nn , kk and qq ( 2n50002 \le n \le 5000 ; 1k50001 \le k \le 5000 ; 1q21051 \le q \le 2 \cdot 10^5 ).

The second line of the input contains nn integers a1,a2,,ana_1, a_2, \dots, a_n ( 1ai1091 \le a_i \le 10^9 ).

qq lines follow. Each line contains two space-separated integers ii and xx ( 1in1 \le i \le n ; 1x1091 \le x \le 10^9 ) indicating that you must change the value of aia_i to xx .

输出格式

Print qq integers. The ii -th integer should be the sum of values over all good paths after the first ii updates are performed. Since the answers may be large, print them modulo 109+710^9 + 7 .

输入输出样例

  • 输入#1

    5 1 5
    3 5 1 4 2
    1 9
    2 4
    3 6
    4 6
    5 2

    输出#1

    62
    58
    78
    86
    86
  • 输入#2

    5 2 5
    3 5 1 4 2
    1 9
    2 4
    3 6
    4 6
    5 2

    输出#2

    157
    147
    207
    227
    227
  • 输入#3

    4 40 6
    92 21 82 46
    3 56
    1 72
    4 28
    1 97
    2 49
    2 88

    输出#3

    239185261
    666314041
    50729936
    516818968
    766409450
    756910476

说明/提示

In the first example, the good paths are (1,2),(2,1),(2,3),(3,2),(3,4),(4,3),(4,5),(5,4)(1, 2), (2, 1), (2, 3), (3, 2), (3, 4), (4, 3), (4, 5), (5, 4) .

Initially the values of aa are [3,5,1,4,2][3, 5, 1, 4, 2] . After the first update, they become [9,5,1,4,2][9, 5, 1, 4, 2] . After the second update, they become [9,4,1,4,2][9, 4, 1, 4, 2] , and so on.

首页