传送门;牛客
题目描述:
帕秋莉掌握了一种木属性魔法
这种魔法可以生成一片森林(类似于迷阵),但一次实验时,帕秋莉不小心将自己困入了森林
帕秋莉处于地图的左下角,出口在地图右上角,她只能够向上或者向右行走
现在给你森林的地图,保证可以到达出口,请问有多少种不同的方案
答案对2333取模
输入:
3 3
0 1 0
0 0 0
0 0 0
输出:
3
emmm,这道题其实算是一道简单dp吧,并且跟这道过河卒简直一模一样
主要思路:
1.我在那道过河卒里讲的挺清楚了,只要将那道题中马的攻击位置换成这道题中的树即可,在此就不再赘述了
注意需要取模,注意出发点在左下而不是左上
具体的代码部分:
#include <iostream>
#include <cstdio>
#include <cmath>
#include <algorithm>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <string.h>
#include <stack>
#include <deque>
using namespace std;
typedef long long ll;
#define inf 0x3f3f3f3f
#define root 1,n,1
#define lson l,mid,rt<<1
#define rson mid+1,r,rt<<1|1
inline ll read() {
ll x=0,w=1;char ch=getchar();
for(;ch>'9'||ch<'0';ch=getchar()) if(ch=='-') w=-1;
for(;ch>='0'&&ch<='9';ch=getchar()) x=x*10+ch-'0';
return x*w;
}
#define maxn 1000000
#define ll_maxn 0x3f3f3f3f3f3f3f3f
const double eps=1e-8;
int n,m;int dp[3005][3005];
int a[3001][3001];
const int mod=2333;
int main() {
n=read();m=read();
for(int i=1;i<=n;i++) {
for(int j=1;j<=n;j++) {
a[i][j]=read();
}
}
dp[n][1]=1;a[n][1]=1;
for(int i=n;i>=1;i--) {
for(int j=1;j<=m;j++) {
if(a[i][j]) continue;
dp[i][j]=(dp[i][j-1]+dp[i+1][j])%mod;
}
}
cout<<dp[1][m]<<endl;
return 0;
}