One of the secret chambers in Hogwarts is full of philosopher’s stones. The floor of the chamber is covered by h × w square tiles, where there are h rows of tiles from front (first row) to back (last row) and w columns of tiles from left to right. Each tile has 1 to 100 stones on it. Harry has to grab as many philosopher’s stones as possible, subject to the following restrictions:
- He starts by choosing any tile in the first row, and collects the philosopher’s stones on that tile. Then, he moves to a tile in the next row, collects the philosopher’s stones on the tile, and so on until he reaches the last row.
- When he moves from one tile to a tile in the next row, he can only move to the tile just below it or diagonally to the left or right.
Input
The first line consists of a single integer T, the number of test cases. In each of the test cases, the first line has two integers. The first integer h (1 <= h <= 100) is the number of rows of tiles on the floor. The second integer w (1 <= w <= 100) is the number of columns of tiles on the floor. Next, there are h lines of inputs. The i-th line of these, specifies the number of philosopher’s stones in each tile of the i-th row from the front. Each line has w integers, where each integer m (0 <= m <= 100) is the number of philosopher’s stones on that tile. The integers are separated by a space character.
Output
The output should consist of T lines, (1 <= T <= 100), one for each test case. Each line consists of a single integer, which is the maximum possible number of philosopher’s stones Harry can grab, in one single trip from the first row to the last row for the corresponding test case.
Example
Input: 1 6 5 3 1 7 4 2 2 1 3 1 1 1 2 2 1 8 2 2 1 5 3 2 1 4 4 4 5 2 7 5 1 Output: 32//7+1+8+5+4+7=32
记忆化搜索
#include <cstdio> #include <cstring> using namespace std; const int maxn = 100+5; int a[maxn][maxn]; int dp[maxn][maxn]; int n,m; inline void init(){ scanf("%d %d",&n,&m); for (int i=1; i<=n; i++) for (int j=1; j<=m; j++) scanf("%d",&a[i][j]); memset(dp,0,sizeof(dp)); } inline int MAX(int x, int y) {return x>y?x:y;} int DFS(int x, int y) { if (x==n) return a[x][y]; if (dp[x][y]) return dp[x][y]; int tmp = DFS(x+1,y); if (y>1) tmp = MAX(tmp,DFS(x+1,y-1)); if (y<m) tmp = MAX(tmp,DFS(x+1,y+1)); return dp[x][y] = tmp+a[x][y]; } int mx; int main(){ int T; scanf("%d",&T); while (T--){ init(); for (int i=1; i<=m; i++) dp[1][i] = DFS(1,i); mx = 0; for (int i=1; i<=m; i++) mx = MAX(mx,dp[1][i]); printf("%d\n",mx); } return 0; }
本文介绍了一个编程问题:哈利波特需要在一个由多个行和列组成的密室中寻找哲学家之石,每块瓷砖上都有数量不等的石头,哈利的目标是在遵循特定移动规则的情况下收集尽可能多的石头。文章提供了使用记忆化搜索算法解决该问题的方法。
1194

被折叠的 条评论
为什么被折叠?



