Find the maximum sum path of a matrix from left column to right column?

Jeff loves playing games, Gluttonous snake( an old game in NOKIA era ) is one of his favourites. However, after playing gluttonous snake so many times, he finally got bored with the original rules. In order to bring new challenge to this old game, Jeff introduced new rules :

  • The ground is a grid, with n rows and m columns(1 <= n, m <= 500).

  • Each cell contains a value v (-1 vi 99999), if v is -1, then this cell is blocked, and the snake ≤ ≤ can not go through, otherwise, after the snake visited this cell, you can get v point.

  • The snake can start from any cell along the left border of this ground and travel until it finally stops at one cell in the right border.

  • During this trip, the snake can only go up/down/right, and can visit each cell only once. Special cases :

  • a. Even in the left border and right border, the snake can go up and down.

    b. When the snake is at the top cell of one column, it can still go up, which demands the player to pay all current points , then the snake will be teleported to the bottom cell of this column and vice versa.

    After creating such a new game, Jeff is confused how to get the highest score. Please help him to write a program to solve this problem. Input The first line contains two integers n (rows) and m (columns), (1 <= n, m <= 500), separated by a single space. Next n lines describe the grid. Each line contains m integers vi (-1 vi 99999) ≤ ≤ vi = -1 means the cell is blocked. Output Output the highest score you can get. If the snake can not reach the right side, output -1.

    Input :

    4 4

    -1 4 5 1

    2 -1 2 4

    3 3 -1 3

    4 2 1 2

    Output :

    23


    I have solved this one but the problem is you have not tried.If you will try ,everyone here will help you for sure. Instead of just copy and paste do write where you got stuck.

    链接地址: http://www.djcxy.com/p/63844.html

    上一篇: 在网格中查找最大点,以便始终覆盖特定点

    下一篇: 从左列到右列找出矩阵的最大总和路径?