hdu 2391 Filthy Rich 贪心 数塔问题

来源:互联网 发布:ubuntu 忘记用户密码 编辑:程序博客网 时间:2024/05/24 04:51

Description

They say that in Phrygia, the streets are paved with gold. You’re currently on vacation in Phrygia, and to your astonishment you discover that this is to be taken literally: small heaps of gold are distributed throughout the city. On a certain day, the Phrygians even allow all the tourists to collect as much gold as they can in a limited rectangular area. As it happens, this day is tomorrow, and you decide to become filthy rich on this day. All the other tourists decided the same however, so it’s going to get crowded. Thus, you only have one chance to cross the field. What is the best way to do so? 

Given a rectangular map and amounts of gold on every field, determine the maximum amount of gold you can collect when starting in the upper left corner of the map and moving to the adjacent field in the east, south, or south-east in each step, until you end up in the lower right corner. 
 

Input

The input starts with a line containing a single integer, the number of test cases. 
Each test case starts with a line, containing the two integers r and c, separated by a space (1 <= r, c <= 1000). This line is followed by r rows, each containing c many integers, separated by a space. These integers tell you how much gold is on each field. The amount of gold never negative. 
The maximum amount of gold will always fit in an int.
 

Output

For each test case, write a line containing “Scenario #i:”, where i is the number of the test case, followed by a line containing the maximum amount of gold you can collect in this test case. Finish each test case with an empty line. 
 

Sample Input

13 41 10 8 80 0 1 80 27 0 4
 

Sample Output

Scenario #1:42
 




PS:贪心思路:从下到上一步一步更新它所能到的方向的权值。。。。找到它需所到方向的最大权值



代码:

#include<stdio.h>#include<string.h>using namespace std;int a[1020][1020];int max1(int a,int b){    return a>b?a:b;}int main(){    int m,n;    while(~scanf("%d %d",&m,&n))    {        memset(a,0,sizeof(a));        for(int i=0;i<m;i++)        {            for(int j=0;j<n;j++)                scanf("%d",&a[i][j]);        }        for(int i=m-1;i>=0;i--)        {            for(int j=n-1;j>=0;j--)            {                if(i==m-1)                    a[i][j]+=a[i][j+1];                else if(j==n-1)                    a[i][j]+=a[i+1][j];                else                    a[i][j]+=max1(a[i+1][j],a[i][j+1]);            }        }        printf("%d\n",a[0][0]);    }}

0 0
原创粉丝点击