HDU 1208 Pascal's Travels 经典 跳格子的方案数 (dp或者记忆化搜索)
Description
An n x n game board is populated with integers, one nonnegative integer per square. The goal is to travel along any legitimate path from the upper left corner to the lower right corner of the board. The integer in any one square dictates how large a step away from that location must be. If the step size would advance travel off the game board, then a step in that particular direction is forbidden. All steps must be either to the right or toward the bottom. Note that a 0 is a dead end which prevents any further progress.
Consider the 4 x 4 board shown in Figure 1, where the solid circle identifies the start position and the dashed circle identifies the target. Figure 2 shows the three paths from the start to the target, with the irrelevant numbers in each removed.
Figure 1
Figure 2
Consider the 4 x 4 board shown in Figure 1, where the solid circle identifies the start position and the dashed circle identifies the target. Figure 2 shows the three paths from the start to the target, with the irrelevant numbers in each removed.


Input
The input contains data for one to thirty boards, followed by a final line containing only the integer -1. The data for a board starts with a line containing a single positive integer n, 4 <= n <= 34, which is the number of rows in this board. This is followed by n rows of data. Each row contains n single digits, 0-9, with no spaces between them.
Output
The output consists of one line for each board, containing a single integer, which is the number of paths from the upper left corner to the lower right corner. There will be fewer than 2^63 paths for any board.
Sample Input
4
2331
1213
1231
3110
4
3332
1213
1232
2120
5
11101
01111
11111
11101
11101
-1
Sample Output
3
0
7
分析:
思路1:
dp[i][j]:表示从1,1到i,j的方案数目
注意初始化dp[1][1]=1
状态转移方程:
if(i+a[i][j]<=n)
dp[i+a[i][j]][j]+=dp[i][j];
if(j+a[i][j]<=n)
dp[i][j+a[i][j]]+=dp[i][j];
dp[i+a[i][j]][j]+=dp[i][j];
if(j+a[i][j]<=n)
dp[i][j+a[i][j]]+=dp[i][j];
下一个状态有当前状态决定
code:
#include <iostream> #include <cstdio> #include<stdio.h> #include<algorithm> #include<cstring> #include<math.h> #include<memory> #include<queue> #include<vector> using namespace std; #define max_v 40 __int64 dp[max_v][max_v];//dp[i][j] 从1,1到i,j的方案数 int a[max_v][max_v]; char s[max_v]; int main() { int n; while(~scanf("%d",&n)) { if(n==-1) break; for(int i=1;i<=n;i++) { scanf("%s",s); int l=strlen(s); int k=1; for(int j=0;j<l;j++) { a[i][k++]=s[j]-'0'; } } memset(dp,0,sizeof(dp)); dp[1][1]=1; for(int i=1;i<=n;i++) { for(int j=1;j<=n;j++) { if(a[i][j]==0) continue; if(i+a[i][j]<=n) dp[i+a[i][j]][j]+=dp[i][j]; if(j+a[i][j]<=n) dp[i][j+a[i][j]]+=dp[i][j]; } } printf("%I64d\n",dp[n][n]); } return 0; }
思路二:
记忆化搜索
注意这里dp的含义和上面dp的含义不同
这里的dp:dp[i][j]代表从i,j出发的方案数
#include <iostream> #include <cstdio> #include<stdio.h> #include<algorithm> #include<cstring> #include<math.h> #include<memory> #include<queue> #include<vector> using namespace std; #define max_v 40 __int64 dp[max_v][max_v];//dp[i][j] 从i,j出发的方案数 int a[max_v][max_v]; char s[max_v]; int n; __int64 dfs(int x,int y) { if(dp[x][y]>0)//记忆化搜索 return dp[x][y]; if(x==n&&y==n)//搜到终点 return 1; int xx,yy; if(a[x][y]==0)//不能跳的点 return 0; for(int k=1;k<=2;k++)//两个方向,下或右 { if(k==1) { xx=x+a[x][y]; yy=y; }else { xx=x; yy=y+a[x][y]; } if(xx<=n&&yy<=n)//避免越界 dp[x][y]+=dfs(xx,yy); } return dp[x][y]; } int main() { while(~scanf("%d",&n)) { if(n==-1) break; for(int i=1;i<=n;i++) { scanf("%s",s); int l=strlen(s); int k=1; for(int j=0;j<l;j++) { a[i][k++]=s[j]-'0'; } } memset(dp,0,sizeof(dp)); printf("%I64d\n",dfs(1,1));//从1,1开始搜 } return 0; }
心之所向,素履以往
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· SQL Server 2025 AI相关能力初探
· Linux系列:如何用 C#调用 C方法造成内存泄露
· AI与.NET技术实操系列(二):开始使用ML.NET
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
· 阿里最新开源QwQ-32B,效果媲美deepseek-r1满血版,部署成本又又又降低了!
· SQL Server 2025 AI相关能力初探
· AI编程工具终极对决:字节Trae VS Cursor,谁才是开发者新宠?
· 开源Multi-agent AI智能体框架aevatar.ai,欢迎大家贡献代码
· Manus重磅发布:全球首款通用AI代理技术深度解析与实战指南