• LA 3350


    The NASA Space Center, Houston, is less than 200 miles from San Antonio, Texas (the site of the ACM Finals this year). This is the place where the astronauts are trained for Mission Seven Dwarfs, the next giant leap in space exploration. The Mars Odyssey program revealed that the surface of Mars is very rich in yeyenum and bloggium. These minerals are important ingredients for certain revolutionary new medicines, but they are extremely rare on Earth. The aim of Mission Seven Dwarfs is to mine these minerals on Mars and bring them back to Earth.

    The Mars Odyssey orbiter identified a rectangular area on the surface of Mars that is rich in minerals. The area is divided into cells that form a matrix of n <tex2html_verbatim_mark>rows and m <tex2html_verbatim_mark>columns, where the rows go from east to west and the columns go from north to south. The orbiter determined the amount of yeyenum and bloggium in each cell. The astronauts will build a yeyenum refinement factory west of the rectangular area and a bloggium factory to the north. Your task is to design the conveyor belt system that will allow them to mine the largest amount of minerals.

    There are two types of conveyor belts: the first moves minerals from east to west, the second moves minerals from south to north. In each cell you can build either type of conveyor belt, but you cannot build both of them in the same cell. If two conveyor belts of the same type are next to each other, then they can be connected. For example, the bloggium mined at a cell can be transported to the bloggium refinement factory via a series of south-north conveyor belts.

    The minerals are very unstable, thus they have to be brought to the factories on a straight path without any turns. This means that if there is a south-north conveyor belt in a cell, but the cell north of it contains an east-west conveyor belt, then any mineral transported on the south-north conveyor beltwill be lost. The minerals mined in a particular cell have to be put on a conveyor belt immediately, in the same cell (thus they cannot start the transportation in an adjacent cell). Furthermore, any bloggium transported to the yeyenum refinement factory will be lost, and vice versa.

    epsfbox{p3530.eps}<tex2html_verbatim_mark>

    Your program has to design a conveyor belt system that maximizes the total amount of minerals mined,i.e., the sum of the amount of yeyenum transported to the yeyenum refinery and the amount of bloggium transported to the bloggium refinery.

    Input 

    The input contains several blocks of test cases. Each case begins with a line containing two integers: the number 1$ le$n$ le$500 <tex2html_verbatim_mark>of rows, and the number 1$ le$m$ le$500 <tex2html_verbatim_mark>of columns. The next n <tex2html_verbatim_mark>lines describe the amount of yeyenum that can be found in the cells. Each of these n <tex2html_verbatim_mark>lines contains m <tex2html_verbatim_mark>integers. The first line corresponds to the northernmost row; the first integer of each line corresponds to the westernmost cell of the row. The integers are between 0 and 1000. The next n <tex2html_verbatim_mark>lines describe in a similar fashion theamount of bloggium found in the cells.

    The input is terminated by a block with n = m = 0 <tex2html_verbatim_mark>.

    Output 

    For each test case, you have to output a single integer on a separate line: the maximum amount of mineralsthat can be mined.

    Sample Input 

    4 4
    0 0 10 9
    1 3 10 0
    4 2 1 3 
    1 1 20 0
    10 0 0 0
    1 1 1 30
    0 0 5 5
    5 10 10 10
    0 0
    

    Sample Output 

    98

    dpw[row][col] = yey[row][col] + max(dpn[row - 1][col], dpw[row - 1][col]);
    dpn[row][col] = blo[row][col] + max(dpn[row][col - 1], dpw[row][col - 1]);

     1 #include <iostream>
     2 #include <cstdio>
     3 #include <cstring>
     4 #include <algorithm>
     5 
     6 using namespace std;
     7 
     8 const int MAX = 505;
     9 int N, M;
    10 int yey[MAX][MAX], blo[MAX][MAX];
    11 int syey[MAX][MAX],sblo[MAX][MAX];
    12 int dpw[MAX][MAX], dpn[MAX][MAX];
    13 
    14 
    15 int main()
    16 {
    17     //freopen("sw.in","r",stdin);
    18     while(~scanf("%d%d", &N, &M) && ( N + M)) {
    19             memset(syey, 0, sizeof(yey));
    20             memset(sblo, 0, sizeof(blo));
    21 
    22             for(int i = 1; i <= N; ++i) {
    23                     for(int j = 1; j <= M; ++j) {
    24                             scanf("%d", &yey[i][j]);
    25                             yey[i][j] += yey[i][j - 1];
    26                     }
    27             }
    28 
    29             for(int  i = 1; i <= N; ++i) {
    30                     for(int j = 1; j <= M; ++j) {
    31                             scanf("%d", &blo[i][j]);
    32                             blo[i][j] += blo[i - 1][j];
    33                     }
    34             }
    35 
    36 
    37 
    38             for(int row = 1; row <= N; ++row) {
    39                     for(int col = 1; col <= M; ++col) {
    40                             dpw[row][col] = yey[row][col] + max(dpn[row - 1][col], dpw[row - 1][col]);
    41                             dpn[row][col] = blo[row][col] + max(dpn[row][col - 1], dpw[row][col - 1]);
    42                     }
    43             }
    44 
    45             printf("%d
    ", max(dpw[N][M], dpn[N][M]));
    46     }
    47     //cout << "Hello world!" << endl;
    48     return 0;
    49 }
    View Code
  • 相关阅读:
    编译php5.4的时候出现错误----configure: error: in `/usr/local/src/php540/php-5.4.0':
    git之旅【第二篇】
    如何在CentOS 5/6上安装EPEL源
    python之旅【第二篇】
    UML类图
    《大话设计模式》——简单工厂模式
    存储过程与存储函数学习笔记
    Mybatis逆向工程
    Navicat for MySQL安装工具及破解工具
    启动maven的web项目
  • 原文地址:https://www.cnblogs.com/hyxsolitude/p/3724542.html
Copyright © 2020-2023  润新知