Planar Reflections
参考:Codeforces 1498C - Planar Reflections (DP)
对于 dp 而言,就是要发现其中可以递推的东西。
\(dp[i][j]=dp[n-i][j-1](表示反射的粒子)+dp[i-1][j](表示穿过的粒子)\)
第一维状态表示剩余的要穿过的层数,第二纬表示当前粒子的衰变年龄。
// Created by CAD
#include <bits/stdc++.h>
#define mst(name, value) memset(name,value,sizeof(name))
using namespace std;
int dp[1005][1005];
int n;
const int mod=1e9+7;
int dfs(int i, int j){
if(~dp[i][j]) return dp[i][j];
if(j==1||i==0) return dp[i][j]=1;
return dp[i][j]=(1ll*dfs(n-i,j-1)+dfs(i-1,j))%mod;
}
int main() {
ios::sync_with_stdio(false);
cin.tie(0);
int t;cin>>t;
while(t--){
mst(dp,-1);
int k;cin>>n>>k;
cout<<dfs(n,k)<<endl;
}
return 0;
}
CAD加油!欢迎跟我一起讨论学习算法,QQ:1401650042