CodeForces 1467D Sum of Paths (動態規劃)
阿新 • • 發佈:2021-06-18
CodeForces 1467D Sum of Paths
題意
有一條直線,直線上有 n(n <= 5000) 個點,每個點有一個值,你可以選擇在任意點出發,移動 k(k <= 5000) 步,只能向左或向右移動,但是可以多次經過同一個點,所有可能出現的路徑稱好路徑。下面有 q(q <= 200000) 個詢問,每次詢問修改一個點的值,同時需要你輸出所有好路徑經過的點的值的總和。
輸入
5 1 5
3 5 1 4 2
1 9
2 4
3 6
4 6
5 2
輸出
62
58
78
86
86
樣例解釋
該樣例可能出現的所有好路徑為,(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)。然後每次詢問將其中一個點的值改變,然後輸出所有好路徑的經過的所有點的值的總和。
解析
首先根據題意,很容易能夠想出計算所有路徑的條數的方式,使用動態規劃的思想,\(dp[i][j]\) 表示從任意點出發,移動 \(i\) 步並且停在點 \(j\) 時的所有路徑的條數。狀態轉移方程也比較簡單,\(dp[i][j] = dp[i-1][j-1] + dp[i-1][j+1]\) ,這樣就可以計算所有的好路徑。
但是如果每次查詢都重新計算,那麼肯定會超時,所以我們可以計算出所有的好路徑中一共經過某個點的次數,這樣每次修改,只要將修改後與修改前的值再乘以出現的次數,就是答案。
所以問題就是需要去求出所有好路徑中經過某個點的次數,首先先來列舉一點 \(j\),再來看定義的動態規劃 \(dp[i][j]\)
程式碼
#pragma comment(linker, "/STACK:1024000000,1024000000")
#include <cstdio>
#include <string>
#include <cstdlib>
#include <cmath>
#include <iostream>
#include <cstring>
#include <set>
#include <queue>
#include <algorithm>
#include <vector>
#include <map>
#include <cctype>
#include <ctime>
#include <stack>
#include <sstream>
#include <list>
#include <assert.h>
#include <bitset>
#include <numeric>
#include <unordered_map>
#define debug() puts("++++")
#define print(x) cout<<"====== "<<(x)<<" ====="<<endl;
// #define gcd(a, b) __gcd(a, b)
#define lson l,m,rt<<1
#define rson m+1,r,rt<<1|1
#define fi first
#define se second
#define pb push_back
#define sqr(x) ((x)*(x))
#define ms(a,b) memset(a, b, sizeof a)
#define _mod(x) ((x) % mod + mod) % mod
#define sz size()
#define be begin()
#define ed end()
#define pu push_up
#define pd push_down
#define cl clear()
#define lowbit(x) -x&x
// #define all 1,n,1
#define FOR(i,n,x) for(int i = (x); i < (n); ++i)
#define freopenr freopen("in.in", "r", stdin)
#define freopenw freopen("out.out", "w", stdout)
using namespace std;
typedef long long LL;
typedef unsigned long long ULL;
typedef pair<int, int> P;
const int INF = 0x3f3f3f3f;
const LL LNF = 1e17;
const double inf = 1e20;
const double PI = acos(-1.0);
const double eps = 1e-12;
const int maxn = 5000 + 7;
const int maxm = 2000000 + 7;
const LL mod = 1e9 + 7;
const int dr[] = {-1, 1, 0, 0, 1, 1, -1, -1};
const int dc[] = {0, 0, 1, -1, 1, -1, 1, -1};
const P null = P(-1, -1);
int n, m;
inline bool is_in(int r, int c) {
return r >= 0 && r < n && c >= 0 && c < m;
}
inline int read_int(){
int x; scanf("%d", &x); return x;
}
LL dp[maxn][maxn], sum[maxn];
int a[maxn];
int main(){
int q;
scanf("%d %d %d", &n, &m, &q);
for(int i = 1; i <= n; ++i){
scanf("%d", a + i);
dp[0][i] = 1;
}
for(int i = 1; i <= m; ++i){
for(int j = 1; j <= n; ++j){
dp[i][j] = (dp[i-1][j-1] + dp[i-1][j+1]) % mod;
}
}
LL ans = 0;
for(int i = 1; i <= n; ++i){
for(int j = 0; j <= m; ++j){
sum[i] = (sum[i] + dp[j][i] * dp[m-j][i]) % mod;
}
ans = (ans + sum[i] * a[i]) % mod;
}
while(q--){
int x, i; scanf("%d %d", &i, &x);
int det = x - a[i];
a[i] = x;
ans = _mod(ans + det * sum[i]);
cout << ans << endl;
}
return 0;
}