CF1467D.Sum of Paths
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
There are n cells, numbered 1,2,…,n from left to right. You have to place a robot at any cell initially. The robot must make exactly k 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 i , it must move to either the cell i−1 or the cell i+1 , as long as it lies between 1 and n (endpoints inclusive). The cells, in the order they are visited (including the cell the robot is placed), together make a good path.
Each cell i has a value ai associated with it. Let c0,c1,…,ck be the sequence of cells in a good path in the order they are visited ( c0 is the cell robot is initially placed, c1 is the cell where the robot is after its first move, and so on; more formally, ci is the cell that the robot is at after i moves). Then the value of the path is calculated as ac0+ac1+⋯+ack .
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+7 . Two good paths are considered different if the starting cell differs or there exists an integer i∈[1,k] such that the current cell of the robot after exactly i moves is different in those paths.
You must process q updates to a 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 n , k and q ( 2≤n≤5000 ; 1≤k≤5000 ; 1≤q≤2⋅105 ).
The second line of the input contains n integers a1,a2,…,an ( 1≤ai≤109 ).
q lines follow. Each line contains two space-separated integers i and x ( 1≤i≤n ; 1≤x≤109 ) indicating that you must change the value of ai to x .
输出格式
Print q integers. The i -th integer should be the sum of values over all good paths after the first i updates are performed. Since the answers may be large, print them modulo 109+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) .
Initially the values of a are [3,5,1,4,2] . After the first update, they become [9,5,1,4,2] . After the second update, they become [9,4,1,4,2] , and so on.