dp问题——Philosophers Stone

自底而上,dp问题

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<iostream>
#include<cstdio>
#include<math.h>
#include<vector>
#include<string>
#include<string.h>
#include<map>
#include<queue>
#include<algorithm>
using namespace std;

struct my_str
{
	string str_temp;
	long long sum_str;
};

bool cmp(my_str a, my_str b)
{
	if (a.sum_str>b.sum_str)
	{
		return true;
	}
	else
	{
		return false;
	}
}

int main()
{
	int n;
	cin >> n;
	while (n--)
	{
		int y, x;
		cin >> y >> x;
		int my_map[108][108] = { 0 };
		int map_sum[108][108]{ 0 };
		//从低而上
		for (int  i = 1; i <=y; i++)
		{
			for (int  j = 1; j <=x; j++)
			{
				cin >> my_map[i][j];
			}
		}

		for (int  i = 0; i <=x; i++)
		{
			map_sum[y][i] = my_map[y][i];
		}
		for (int  i = (y-1); i>0; i--)
		{
			for (int  j = 1; j <=x ; j++)
			{
				int max_temp = max(map_sum[i + 1][j], map_sum[i+1][j-1]);
				max_temp = max(max_temp, map_sum[i + 1][j + 1]);
				map_sum[i][j] = max_temp+my_map[i][j];
			}

		}
		int my_result = 0;
		for (int  i = 1; i <=x ; i++)
		{
			if (my_result<map_sum[1][i])
			{
				my_result = map_sum[1][i];
			}
		}
		cout << my_result << endl;
	}
	return 0;
}


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值