Filthy Rich

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

C++版本一

贪心算法+数塔+DP

对于坐标(i,j)的点,到达他所能得到的最大金子数为:他左边和上边格子中最大那一个的值加上他自己的值。{ map[i][j] += max( map[i-1][j] , map[i][j-1]) }

  为什么能够这样想呢,难道不会有数塔那种情况吗?

 这里跟数塔不同,这里(i,j)的值一定为(能到达他的)以前所有格子最大的值,这样一直递推到最后一个格子就行了。

#include <iostream>
#include <stdio.h>
#include <cstring>
#include <algorithm>
#include <queue>

using namespace std;
int t;
int r,c;
int a[1100][1100];

int main()
{
    scanf("%d",&t);
    for(int T=1;T<=t;T++){
        scanf("%d%d",&r,&c);
        memset(a,0,sizeof(a));
        for(int i=1;i<=r;i++){
            for(int j=1;j<=c;j++){
                scanf("%d",&a[i][j]);
                a[i][j] += max(a[i-1][j],a[i][j-1]);
            }
        }
        printf("Scenario #%d:\n",T);
        cout << a[r][c]<< endl<< endl;
    }
    //cout << "Hello world!" << endl;
    return 0;
}

 

全部评论

相关推荐

评论
点赞
收藏
分享

创作者周榜

更多
正在热议
更多
# 春招至今,你的战绩如何? #
10895次浏览 93人参与
# 你的实习产出是真实的还是包装的? #
1936次浏览 42人参与
# MiniMax求职进展汇总 #
24091次浏览 309人参与
# 军工所铁饭碗 vs 互联网高薪资,你会选谁 #
7605次浏览 43人参与
# 简历第一个项目做什么 #
31722次浏览 338人参与
# 重来一次,我还会选择这个专业吗 #
433504次浏览 3926人参与
# 巨人网络春招 #
11358次浏览 223人参与
# 当下环境,你会继续卷互联网,还是看其他行业机会 #
187176次浏览 1122人参与
# 牛客AI文生图 #
21442次浏览 238人参与
# 不考虑薪资和职业,你最想做什么工作呢? #
152419次浏览 888人参与
# 研究所笔面经互助 #
118955次浏览 577人参与
# 简历中的项目经历要怎么写? #
310295次浏览 4216人参与
# AI时代,哪些岗位最容易被淘汰 #
63741次浏览 826人参与
# 面试紧张时你会有什么表现? #
30508次浏览 188人参与
# 你今年的平均薪资是多少? #
213111次浏览 1039人参与
# 你怎么看待AI面试 #
180086次浏览 1258人参与
# 高学历就一定能找到好工作吗? #
64329次浏览 620人参与
# 你最满意的offer薪资是哪家公司? #
76515次浏览 374人参与
# 我的求职精神状态 #
448107次浏览 3129人参与
# 正在春招的你,也参与了去年秋招吗? #
363447次浏览 2638人参与
# 腾讯音乐求职进展汇总 #
160661次浏览 1112人参与
# 校招笔试 #
471054次浏览 2964人参与
牛客网
牛客网在线编程
牛客网题解
牛客企业服务