SPOJ 3923 BYTESM2 - Philosophers Stone

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.
Given the values of h and w, and the number of philosopher’s stones on each tile, write a program to compute the maximum possible number of philosopher’s stones Harry can grab in one single trip from the first row to the last row.

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;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值