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

hide comments
f00zz: 2019-03-23 20:58:16

Broken input format. The problem statement is wrong, don't assume that rows are separated by line breaks.

suraj_13: 2019-03-18 14:26:58

Think recursively

newbie_127: 2019-03-09 03:36:17

Break down the problem as given in the hint :
//7+1+8+5+4+7=32

1. 7
2. 7 + 1
3. 7 + 1 + 8
4. 7 + 1 + 8 + 5
5. 7 + 1 + 8 + 5 + 4
6. 7 + 1 + 8 + 5 + 4 + 7
i+1. = (i.) + arr[i']

sandilya1599: 2019-03-01 04:50:07

Noice

arvindrvs21: 2019-02-10 14:50:05

inputs are not in correct order.. space and new line are interchangeably used.. Dont try this code in java

Last edit: 2019-02-10 14:50:57
anant6025: 2019-02-08 00:28:15

Nice Question, AC in one go!
Tip:- First think of a recursive solution and implement it, than apply top-down or bottom-up DP

f23505106: 2019-01-13 08:58:54

python need very careful, the input is not as description
Robert Milijaš: 2012-10-19 19:55:09
Try the following test case:
2
1 5
1 2 3 4 5
Out: 5
5 1
1 2 3 4 5
Out:15

They were very helpful

mohitksharma: 2019-01-07 22:02:40

Can somebody give me an alternate test case to check?

suyashsingh234: 2018-12-18 11:25:44

My brain broke trying to solve this. Got ac finally.

hyperion101010: 2018-11-02 15:44:46

solved sorry be careful with large data types


Added by:Paritosh Aggarwal
Date:2009-02-21
Time limit:1s
Source limit:50000B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Languages:ADA95 ASM32 BASH BF C CSHARP CPP C99 CLPS LISP sbcl LISP clisp D FORTRAN HASK ICON ICK JAVA LUA NEM NICE OCAML PAS-GPC PAS-FPC PERL PHP PIKE PRLG-swi PYTHON RUBY SCM guile SCM qobi ST TEXT WHITESPACE