HDU 2391 Filthy Rich(贪心)

Filthy Rich

Time Limit:5000MS     Memory Limit:32768KB     64bit IO Format:%I64d & %I64u

 

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


 

1
3 4
1 10 8 8
0 0 1 8
0 27 0 4
 

 

Sample Output


 

Scenario #1:
42
 

 

Analysis

  看似一道DP,其实是贪心。对于坐标(i,j)的点,到达他所能得到的最大金子数为:他左边和上边格子中最大那一个的值加上他自己的值。{ map[i][j] += max( map[i-1][j] , map[i][j-1]) }
  为什么能够这样想呢,难道不会有数塔那种情况吗?
  这里跟数塔不同,这里(i,j)的值一定为(能到达他的)以前所有格子最大的值,这样一直递推到最后一个格子就行了。
 
 
 
 1 #include <cstdio>
 2 #include <cstring>
 3 #include <algorithm>
 4 
 5 using namespace std;
 6 
 7 int map[1005][1005];
 8 
 9 int main()
10 {
11     int t;
12     scanf("%d",&t);
13     for(int i=1;i<=t;i++)
14     {
15         memset(map,0,sizeof(map));
16         int r,c;
17         scanf("%d%d",&r,&c);
18         for(int j=1;j<=r;j++)
19             for(int k=1;k<=c;k++)
20             {
21                 scanf("%d",&map[j][k]);
22                 map[j][k] += max(map[j-1][k],map[j][k-1]);
23             }
24             printf("Scenario #%d:
%d

",i,map[r][c]);
25     }
26     return 0;
27 }
原文地址:https://www.cnblogs.com/GY8023/p/4693785.html