[USACO 2009 Oct G]Papaya Jungle
题号:NC24847
时间限制:C/C++/Rust/Pascal 1秒,其他语言2秒
空间限制:C/C++/Rust/Pascal 32 M,其他语言64 M
64bit IO Format: %lld

题目描述

Bessie has wandered off the farm into the adjoining farmer's land. He raises delicious papaya fruit, which is a delicacy for cows. The papaya jungle is partitioned into a grid of squares with R rows and C columns (1 <= R <= 40, 1 <= C <= 40), as is popular in Wisconsin.
Bessie can travel from a given square to any existing adjacent square whose route is parallel to the X or Y axis.
So in the following diagram, if Bessie is at the square labeled "B", she can travel to any of the squares labeled "T":
         .T.
         TBT
         .T.
Bessie always starts out by munching the papayas in square (row=1,col=1).  After she's done with one square, Bessie always uses her trusty binoculars to count the low-hanging fruit in each of the adjacent squares. She then always moves to the square with the most visible uneaten fruit (a square that happily is always unique).
Sooner or later, following this rule, Bessie always ends up in square (R,C) and eats the fruit there.
Given the dimensions of the papaya jungle and the amount of fruit F_{ij} in each square (1 <= F_{ij} <= 100), determine the total number of fruit Bessie consumes for a given papaya jungle.
POINTS: 80

输入描述:

* Line 1: Two space-separated integers: R and C
* Lines 2..R+1: Line i+1 describes row i of the jungle with C space-separated integers that tell how many fruit are in each square:

输出描述:

* Line 1: A single integer that is the total number of papayas that Bessie eats by the time she finishes off the papayas at the barn in the lower right corner at coordinate (R,C).
示例1

输入

复制
3 4 
3 3 4 5 
4 5 3 2 
1 7 4 2 

输出

复制
39

说明

Bessie eats the papayas in the order given by the letters next to the numbers below: 

She declines to eat 4 of the papayas but consumes 39 (visiting all but two squares of the grid).