A14038 | Sum of Paths
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
There are $n$ cells, numbered $1,2,\dots, 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 $a_i$ associated with it. Let $c_0, c_1, \dots, c_k$ be the sequence of cells in a good path in the order they are visited ( $c_0$ is the cell robot is initially placed, $c_1$ is the cell where the robot is after its first move, and so on; more formally, $c_i$ is the cell that the robot is at after $i$ moves). Then the value of the path is calculated as $a_{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 $10^9 + 7$ . Two good paths are considered different if the starting cell differs or there exists an integer $i \in [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.
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 $a_i$ associated with it. Let $c_0, c_1, \dots, c_k$ be the sequence of cells in a good path in the order they are visited ( $c_0$ is the cell robot is initially placed, $c_1$ is the cell where the robot is after its first move, and so on; more formally, $c_i$ is the cell that the robot is at after $i$ moves). Then the value of the path is calculated as $a_{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 $10^9 + 7$ . Two good paths are considered different if the starting cell differs or there exists an integer $i \in [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 \le n \le 5000$ ; $1 \le k \le 5000$ ; $1 \le q \le 2 \cdot 10^5$ ).
The second line of the input contains $n$ integers $a_1, a_2, \dots, a_n$ ( $1 \le a_i \le 10^9$ ).
$q$ lines follow. Each line contains two space-separated integers $i$ and $x$ ( $1 \le i \le n$ ; $1 \le x \le 10^9$ ) indicating that you must change the value of $a_i$ to $x$ .
The second line of the input contains $n$ integers $a_1, a_2, \dots, a_n$ ( $1 \le a_i \le 10^9$ ).
$q$ lines follow. Each line contains two space-separated integers $i$ and $x$ ( $1 \le i \le n$ ; $1 \le x \le 10^9$ ) indicating that you must change the value of $a_i$ 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 $10^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)$ .
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.
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.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted